How to forward a website to another url

There are several ways to accomplish this task, but the simplest to understand is to use php.

To do this, you need to create the page that will do the forwarding. This can be any page, as long as it ends in ”.php”. If you are trying to redirect a domain, you'd create “index.php” inside the public_html directory.

Once you decide which page you will use, then create the file and enter the following text:

<?php
header("Location: http:// whereyouwant.com/to/go.html");
?>

Where http:/whereyouwant.com/to/go.html is the location that you want the page to forward to. You can use local values, ie: /page.html, or full urls as in the above example (http: ..etc.)

 
config/website.txt · Last modified: 2010/02/28 02:37 by muscardin
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Noncommercial-Share Alike 3.0 Unported
Please visit Automatic Backlinks to start earning free backlinks Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki