View Single Post
  #4 (permalink)  
Old 06-04-08, 08:24 PM
pkelly pkelly is offline
Administrator
Site Admin
 
Join Date: Aug 2003
Posts: 142
Default

Hi Rowan,

Thats an example that they give. In your .htaccess file you should only have the following:

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

Neither the load modules or <Directory> directives are required when you use your .htaccess file.

Paul
Reply With Quote