PDA

View Full Version : Problems with the Redirection Meta Tag


francov
03-14-2004, 08:28 PM
Hi,

We have a site whose index.html file has the following code.


<HTML>

<HEAD>

<meta http-equiv="refresh" content="0; url=http://www.ourtestsite.com/cgi-bin/ottgo.cgi?skel=index&site=com">

<TITLE></TITLE>

</HEAD>

<body>

</body>

</HTML>

Whenever we try to spider the site using the format www.ourtestsite.com, we get nothing because PhpDig doesn't seem to understand it has to go to the url above.

Any thoughts?

Thank you.

Charter
03-14-2004, 08:58 PM
Hi. Try removing the space in

content="0; url=

or search the robot_functions.php for

content=['\"][0-9]+;url[[:blank:]]

and add a [[:blank:]]*

francov
03-17-2004, 06:25 PM
Perfect. That was it. It worked great. Thanks for the prompt reply.