Ok today I was playing with mod_rewrite a bit. I needed this for redirecting the phpmentor.info domain to phpmentor.info/index.html as my host says there’s a problem and 301 redirect is the only thing that can help.
Well, here’s the code I used and worked:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.phpmentor.info/index.html $1 [R=301,L]
Btw, this code must be placed into your .htaccess fileĀ
Good luck, hope it’ll help you like it helped me!
