# # URL rewriting for Etomite CMS # Copyright AAB '04 # # To use friendly URLs for Etomite you need to uncomment the three Rewrite directives # Make sure RewriteBase points to the directory where you installed Etomite # e.g. / if your installation is in root # or /Etomite if your installation is in the Etomite subdirectory # # # You must be running on Apache with mod_rewrite to be able to use this functionality. # php_flag zlib.output_compression On php_value zlib.output_compression_level 5 RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]