Hi All I have a website related to stone sales The problem is i want to redirect the hoem page from www.example.com/home.html to www.example.com Can any body suggest me how to do it I have tried the ht access redirect but it is not working and the page remain the same Kindly suggest me Thanks in Advance
Try this code in your .htaccess file: Options +FollowSymlinks RewriteEngine On RewriteRule home.html$ http://www.example.com [r=301,nc]
The above code posted by vansterdam should work, or you can try this: Options +FollowSymLinks RewriteEngine on RewriteRule ^home.html$ http://www.example.com [L,R=301] are you on Unix or Windows server?