How do i redirect www.domain.com/ to www.domain.com/index.php
-
I keep getting in my analytics www.domain.com/ and www.domain.com/index.php how do i make it consistently redirect to one version and not to both.
I know about htaccess redirect and am already using this so am puzzle to which is the best one to use.
below is the example .htaccess file im using.
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.co.uk [nc]
rewriterule ^(.*)$ http://www.domain.co.uk/index.php$1 [r=301,nc]which is better for SEO should i forward to www.domain.com/ or www.domain.com/index.php
-
use the rel="canonical" tag I believe http://support.google.com/webmasters/bin/answer.py?hl=en&answer=139394
-
I'd actually do it the other way - redirect "index.php" to the root ("/") version - Google seems to prefer that and many of your inbound links will be to the root domain (people naturally default to it). Make sure your internal links point to that ("/") as well. See this post that expands on that and gives some .htaccess examples:
http://www.searchmasters.co.nz/articles/78/redirecting-indexphp-to-root-using-htaccess/
You can add the canonical tag to help sweep up the problem, but I think it's best to have a solid 301-redirect in place here, especially if both versions are showing up in analytics.