Log in

View Full Version : URL modification link



neilsabharwal
09-21-2010, 09:11 PM
Hello,
I would like to create a link on my page that simply changes the domain but not the actual path of site. I have an english and french site, so for example.

The english button on the french page would make the user change from french.com/page to english.com/page. I would like the domain part to change but not the "path" part

how can this be done

thanks,
Neil

djr33
09-22-2010, 01:00 AM
<?php echo 'http://www.french.com'.$_SERVER['REQUEST_URI']; ?>

If you don't know which domain you are currently on, you can use $_SERVER['HTTP_HOST'] to check. Then use if statements to decide which is the opposite (and should be the link).