PDA

View Full Version : How do i redirect my domain?


dxflw
03-06-2009, 10:37 PM
I have new dedicated server and i want to redirect my domain from www.domain.com to my forum path i.e www.domain.com/forums/

Any ideas?:confused:

DieselMinded
03-06-2009, 11:01 PM
<a href="http://www.fluidhosting.com/support/hsphere/user/html/14191.htm" target="_blank">http://www.fluidhosting.com/support/...html/14191.htm</a>

dxflw
03-06-2009, 11:17 PM
Sorry i'm using plesk panel.
But is no matter i find topic in the google and its works.

Thank you any way.:)

Winterworks
03-07-2009, 01:22 AM
In www.domain.com, make a new index.html file, and inside it, insert...

<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.domain.com/forums/">

Now, when you visit, you will be redirected.

mcrider
03-07-2009, 01:29 AM
You could create an index.php file that contains this, and put it in your root directory...

<?php
header( 'Location: /forums' ) ;
?>

dxflw
03-07-2009, 10:09 PM
Thanks guys!:)