Code snippets: October 2008 Archives
For various reasons, you might end up needing to put your mod_rewrite syntax in your httpd.conf, usually if you want to use basic rewriting, but with .htaccess support turned of.
In that case, you need to be aware that you need to add a / for it to work, like this:
From http://drupal.org/node/9418:
herefore :
becomes
in my case
In that case, you need to be aware that you need to add a / for it to work, like this:
From http://drupal.org/node/9418:
herefore :
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]becomes
RewriteRule ^/(.*)$ /index.php?q=$1 [L,QSA]in my case
