|
Posted by Armand Brahaj on 06/13/07 20:57
kevgibbo wrote:
> Hi,
>
> I've recently updated a website and I'd like to redirect some ID URL's
> using PHP code, I know how to do the redirect part the problem is the
> if statement to only redirect url's with an id.
>
> for example:
> if domain is www.domain.com do nothing
> but if domain is www.domain.com/?p=12 redirect to www.domain.com
>
> Thanks in advance,
> Kevin
> www.seoptimise.com
>
You can do it with headers.
if ($_GET["p"]==12)
{
header("Location: http://www.domain12.com/");
exit;
}
Of yourse, you should handle the $_GET variables well (check for any
security issues and validation.
Probably create a switch function that will switch for all your values
(so you don't use switch for large number of domain redirects).
Don't forget to put this code at the very begining of the PHP FIle.
Navigation:
[Reply to this message]
|