Mobile app version of vmapp.org
Login or Join
Sherry384

: Why Can I See 301'd URL in Google Index I have a domain, www.timeclockmtsonline that I have 301'd to www.timeclockmts-online.com using the following PHP: <?php header( "HTTP/1.1 301 Moved

@Sherry384

Posted in: #Php #Seo #WebHosting

I have a domain, timeclockmtsonline that I have 301'd to timeclockmts-online.com using the following PHP:

<?php
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location: www.timeclockmts-online.com );
?>


However, when I do a google search on with timeclockmtsonline.com as the search term I can see a listing for that domain. I thought I'd see nothing. Now I am worried about being hit with a duplicate content penalty.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Sherry384

1 Comments

Sorted by latest first Latest Oldest Best

 

@Rambettina238

Is the visibility a problem for you? The "old" site is still indexed by search engines and any incoming links are 301'ed to the new site. Good. Status code "301" says that content "moved permanently" so there is, at least in this context, no duplicate content problem.
There is no benefit (more harm) in trying to get the old site from the index (e.g. with the help of a disallowing robots.txt file).

Google Webmastertools offer an additional way to indicate an address change in Webmastertools -> Configuration, you can select the new domain.
(And even there the 301-redirection is recommended).

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme