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 :).
Printable View
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 :).
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.
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