PDA

View Full Version : need to redirect .php?t=x to another dir


COBRAws
08-01-2005, 06:18 AM
sup guys.
(i think this is the right section, if not, im sorry)

I recently changed my forums dir to another one, and of course, im gettin a huge 404 error log file (i knew this would happend, so i dont bother).

What i would like to do is redirect visits sent to the old forum dir to the new one.

example:

if a user goes to mysite.com/forum/forumdisplay.php?f=1
it redirects to mysite.com/board/forumdisplay.php?f=1

thank you very much.

sabret00the
08-01-2005, 08:23 AM
this should be in hack requests.

basically name this forumdisplay.php and put it in your old directory


<?php

if(intval($_REQUEST['t']))
{
header("Location: http://www.yoursite.com/board/forumdisplay.php?f=" . $_REQUEST['t'] . "");
}

?>

COBRAws
08-01-2005, 04:40 PM
thank you sabret00the! =D

sabret00the
08-01-2005, 09:05 PM
no problemo :)