Domain Redirection Using a PHP Script March 6th, 2010
Q. How do I redirect my domain name using a php server side scripting under Apache web server?
A. Under PHP you need to use header() to send a raw HTTP header.
If you want to redirect a domain to some other URL, you can use the PHP script as below
<?php header("Location: http://example.com/"); exit(); ?>
See PHP Redirect To Another URL / Page Script FAQ for further information.
source here
Tags: domain redirection, Domain Redirection Using a PHP Script, php script
This entry was posted on Saturday, March 6th, 2010 at 9:32 pm and is filed under php, web development. You can follow any responses to this entry through the RSS 2.0 feed.You can leave a response, or trackback from your own site.
This entry was posted on Saturday, March 6th, 2010 at 9:32 pm and is filed under php, web development. You can follow any responses to this entry through the RSS 2.0 feed.You can leave a response, or trackback from your own site.

