Click to See Complete Forum and Search --> : Redirect


bograxie
09-30-2007, 10:44 AM
Hey Guys,

Was just wondering if anybody knew how to redirect users to a different website.

I have a website (www.wizzhack.co.uk) and would like it to redirect people straight away to www.blog.wizzhack.co.uk.

So when a user goes to wizzhack.co.uk it will automatically redirect them to blog.wizzhack.co.uk.

A tutorial or website would be much appreciated.

Thanks,

Bograxie

P.S. Sorry I was not sure if this was PHP or another server side language.

NogDog
09-30-2007, 11:34 AM
PHP can do it via the header function.

www.wizzhack.co.uk/index.php:

<?php
header('Location: http://blog.wizzhack.com.uk/');
?>

bograxie
09-30-2007, 11:53 AM
Awesome, thank you!