How to forward a website to another url
by admin on Jan.06, 2012, under DirectAdmin
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.)
Related posts:
- Setting up DA with an SSL certificate You can switch DirectAdmin to use SSL instead of plain...
- How to setup per-domain Aliases If you want to disable /webmail for just one domain...
Related posts brought to you by Yet Another Related Posts Plugin.
