Forum Moderators: phranque

Message Too Old, No Replies

What is redirect

A request to define this term in SE context

         

young_shim

9:43 am on Dec 31, 2001 (gmt 0)



Greetings, Can I get a definition of the term "redirect" in the context of it being a no-no for listing on seaarch engines. Specifically does it apply to a parked domain name pointing to a page on another domain ?

Thanks in advance.

Air

8:46 pm on Jan 1, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Welcome to wmw young_shim!

The redirect is defined by the error code set by the web server:

301 Moved Permanently
302 Moved Temporarily

Generally engines are more tolerant of 301's than 302's

bobriggs

9:05 pm on Jan 1, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



In addition to Air's description, there is also the html redirect or meta refresh tag. This one is the one that is usually the bad guy 'no-no'. But I've seen inktomi just use the url in the SERP and use the redirected page content.

When you mentioned parked domain, do you mean a second domain (ie alias) that has exactly the same IP as the first?

And as far as javascript redirects go (you didn't mention), I'm not sure that any SE detects it right now, but any human can.

Xoc

12:29 am on Jan 2, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



There are several kinds of redirects:

* a 301 or 302 error. When these pages are hit, the server responds with a error in the HTTP header saying that the page has moved. It then gives the URL that the page has moved to, also in the header. The client's browser automatically forwards to the new page. Search engines are supposed to update their index when they see a 301 error.

* A meta tag that the browser reads and forwards to a new page.

* A javascript program that forwards to a new page

* A server side redirect. In ASP this would be a Server.Transfer. The content is retrieved from another page, but as far as the browser is concerned, the original page was successfully retrieved.

young_shim

7:17 am on Jan 2, 2002 (gmt 0)



Thank you for the replies & apologies for not introducing myself, I live in Asia and am involved with vacation rental.

To your question bobriggs, we have several domain names "parked" at a registrar who provides this service. They point to various pages on our business site which is hosted by another service provider.

I was concerned that oingo regularly accesses these pages directed by a CGI script called "domainparkresults" . But looks like nothing to worry about. Once again thanks to all.

young_shim

7:22 am on Jan 2, 2002 (gmt 0)



Whoops ! I just got corrected. The parked domains point to our operational site domain name, not to specific pages. Sorry ...

nell

11:34 pm on Jan 2, 2002 (gmt 0)

10+ Year Member



I use redirects in the <body> tag as some people have javascript disabled and the meta redirect is automatic and watched by the spiders. Here is some plain 'ole simple HTML that works fine and can be controlled by an event handler.

<body onmouseover="top.location.replace('http://www.XXX.com')">

you can make the redirect automatic by using the event "onload".

or you can use: onclick

Technically speaking the "onmouseover", "onclick", "onmousemove", etc. events are not considered redirects as they require user action to affect - just as if a link was placed on an image. This "image link", however, is replaced by a link on the whole "body" of the page.