I've got a project where there's a bunch of directory1/directory2/index.html type links.
I know that this can also be regarded as a directory1/directory2/ and as such can be regarded as duplicate content.
I know that good practices have on-site links all linking to one type so as to avoid duplicate issues.
But in the case where off-site links are linked to both flavors, is there a good reason to redirect one way or another?
Should I redirect / to index using this:
RedirectMatch ^/$ /index.html
or index to / ? like this:
RedirectMatch /index.html ^/$
In the case where there is a predominant style of backlinking (say using the index.html), I would choose redirecting to index.html.
But in the case where there is no obvious backlink style, is one approach better than the other?
Thanks!
-C