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
|