Hello,
What code would I put in a .htaccess file to redirect www.DOMAIN.tld/forum to www.forum.DOMAIN.tld ?
Thanks
Tom
Moved by opensourcehost (Forum Moderator) from Web Designing: Please post in the correct forum next time, thanks.
Hello,
What code would I put in a .htaccess file to redirect www.DOMAIN.tld/forum to www.forum.DOMAIN.tld ?
Thanks
Tom
Moved by opensourcehost (Forum Moderator) from Web Designing: Please post in the correct forum next time, thanks.
Last edited by Mr.OSH; 06-07-2007 at 04:21 PM.
Create a .htaccess file with the code below. The .htaccess file needs to be in your root directory preferably where your index page is
change NEWDOMAIN.COM with your new domain you wish to link to.Code:Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.NEWDOMAIN.COM/$1 [R=301,L]
This method only works on linux servers tho.
;veni vidi vici
;i came, i saw, i ownt
then its abit rubbish ^^ lol.
use cpanel redirect page, does it for you.
Cpanel's one your hardly even realise its redirecting
PHP Code:<?
header("Location: http://bob.com");
?>
DUB's code is best.
If you cannot get the .htaccess code to work try this:
Make a file called index.html in the /forum directory and add this line in your head.
Code:<meta http-equiv="refresh" content="0;URL=www.forum.DOMAIN.tld">
that isn't what he's asking though. .htaccess is much more efficient
Last edited by DUB; 08-07-2007 at 11:46 PM.
;veni vidi vici
;i came, i saw, i ownt
Want to hide these adverts? Register an account for free!