Forum Moderators: Robert Charlton & goodroi
Quick question, are the 2 pages, (/) and (/home.html) the same page? If that is the case, then, yeah, I'd say there is a duplicate content issue. Don't let Google pick which page to display, make sure there is a 301 set up. We have an Apache forum and ASP .NET forum to address 301's here.
# Index redirect strips named index file, retains path, and forces www
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]*/)*(index|home)\.(html?|php)(\?[^\ ]*)?\ HTTP/ [NC]
RewriteRule ^(([^/]*/)*)(index|home)\.(html?|php)$ http://www.example.com/$1 [R=301,NC,L]
# Redirect non-canonical non-blank URLs to www version with same path
RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]