View Single Post
  #2  
Old 12-08-2005, 09:52 AM
maddy maddy is offline
OSP Starters
 
Join Date: Dec 2005
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
maddy is on a distinguished road
Default Code

Code
<?
// REDIRECT FROM CERTAIN FOLDER
$requested_url = $_SERVER['REQUEST_URI'];

echo $requested_url;

if (substr($requested_url, 1, 3) == 'xxx') {
echo ("<meta http-equiv=\"refresh\" content=\"0;URL=http://www.domain.com/redirect.php\" />");
}
?>

Good Luck -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  Webmaster Forums - View Single Post - 404 error page ??
View Single Post
  #2  
Old 12-08-2005, 09:52 AM
maddy maddy is offline
OSP Starters
 
Join Date: Dec 2005
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
maddy is on a distinguished road
Default Code

Code
<?
// REDIRECT FROM CERTAIN FOLDER
$requested_url = $_SERVER['REQUEST_URI'];

echo $requested_url;

if (substr($requested_url, 1, 3) == 'xxx') {
echo ("<meta http-equiv=\"refresh\" content=\"0;URL=http://www.domain.com/redirect.php\" />");
}
?>

Good Luck -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote