i got a site where mod rewrite isnt working.
on httpd file I have
LoadModule rewrite_module modules/mod_rewrite.so
uncommented
Also for directory
<Directory “/var/www/html”>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
At the beginning of the .htaccess i have
RewriteEngine on
RewriteRule testpage\.html Google [R]
Which supposed to redirect to google on loading testpage.html
Instead of redirecting it stays on that page testpage.html
Any idea?