Another tip related to one of my previous blogs. All websites have an index page (aka Home Page), but no matter whether it’s index.html or index.php or any other name, some search engines will view http://www.domain.com/ and http://www.domain.com/index.php as duplicate content. So I use the following to redirect index.php to /
RewriteEngine on RewriteRule ^index.php$ / [L,R=301]
