PDA

View Full Version : Resolving URLs



petecrump
25 Sep 2007, 04:34 AM
Hi,

Is there anyway i can direct

www.myhomepage.org.uk/folder to www.myhomepage.org.uk

?
Whats the easiest/most reliable method to do this?

Regards

Pete

alvo
25 Sep 2007, 11:58 AM
If your server is running PHP, then make anew document with just this code in it:


<?php
header( 'Location: http://www.myhomepage.org.uk' ) ;
?>

Name it index.php and put in the folder.