PDA

View Full Version : redirect to a new URL


emath
04-05-2009, 03:16 PM
hey, im moving my site domain from math-pl.co.il to emath.co.il .

ive copied all the forums to be under emath.co.il, though, i need that my users who usually entering the math-pl url to be redirected to the emath.co.il url to the same thread.

for e.g if the thread is :
http://www.math-pl.co.il/forums/showthread.php?t=5587

so it will be redirect immediately to http://www.emath.co.il/forums/showthread.php?t=5587

i know its a simple php code and should be in the header but ive no idea how to do it.

any help ?

Mr-Moo
04-06-2009, 03:09 AM
It actually has nothing to do with PHP. If you currently have a domain and you want to forward it to another site you have to add it to your server.

Do this by editing the nameservers and adding that domain onto the box.

Source: http://www.webcomindia.net/cpanel-help/AddonDomains.htm

Hope my information helps :)

Dismounted
04-06-2009, 04:13 AM
Or just add a .htaccess rule.
RewriteEngine On

RewriteCond %{HTTP_HOST} math-pl.co.il$ [NC]
RewriteRule ^(.*)$ http://www.emath.co.il/$1 [R=301,L]

Mr-Moo
04-06-2009, 04:33 AM
Some hosts may not have rewrite enabled, but that is an excellent second method. The majority of hosting companies these day do support this function.

emath
06-10-2009, 12:32 PM
thanks alot