PDA

View Full Version : Domain Domain forwarding check


payasl
01-03-2007, 06:35 AM
Please let me know how to check domain forwarding (it is 301 or Using scripts ) or park in server.

evilgreenmonkey
01-03-2007, 07:07 AM
I personally use web-sniffer.net, a simple tool that lets you check redirects, cloaking, HTML and suspected affiliate links without actually having to risk visiting the site.

For http://www.searchenginewatch.com/ (http://web-sniffer.net/?url=http%3A%2F%2Fwww.searchenginewatch.com&submit=Submit&http=1.1&gzip=yes&type=GET&ua=Mozilla%2F5.0+%28Macintosh%3B+U%3B+Intel+Mac+OS +X%3B+en-US%3B+rv%3A1.8.1.1%29+Gecko%2F20061204+Firefox%2F2 .0.0.1+Web-Sniffer%2F1.0.24) you can see that the server returned "HTTP Status Code: HTTP/1.1 301 Moved Permanently" (a 301 redirect) and that the new URL is http://searchenginewatch.com/. All parked domains should return this message, otherwise duplicate content issues arise.

The main domain should return "HTTP Status Code: HTTP/1.1 200 OK" and incorrectly parked domains will also return 200 OK.

You'll need to know your code to check for JavaScript redirects, although HTML redirects will contain code like this in the source:<meta http-equiv="refresh" content="0;url=http://www.domain.com/" />
:cool:

Rob

payasl
01-03-2007, 08:05 AM
thank you.