I have confirmed on my host that mod_rewrite is enabled. I want incoming requests to be rewritten for transfer to the mod_rewrite.php file in my root directory. Mod_rewrite doesn't seem to work at all. Here is the code in my .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/(.*)$ /mod_rewrite.php?vpath=$1 [L,QSA]
</IfModule>
source
share