View Full Version : Redirects
pbcommun
07-17-2005, 07:49 PM
is it possible to redirect the base domain to another page?
retrogad
07-17-2005, 11:00 PM
is it possible to redirect the base domain to another page?
You could try putting this in your index.php file:
<?php
header("Location:http://www.newlocation.com");
?>
That's a quick and easy way of redirecting to another page.
pbcommun
07-17-2005, 11:10 PM
what i want to do, is i have set up a custom page, that i want to be the homepage. It uses the forum template system, so it has to stay in the forum directory. I cant just move it and rename it index.
You can use htaccess to do that. Htaccess is the file that resides in your public_html directory and it is named like:
.htaccess
You can use the cPanel's File Manager to edit it. Adding a directive like the following:
DirectoryIndex home.html
will change the main file to home.html (you can replace that with whatever you wish). This way, you can make any file to be opened as default with your base domain name :)
pbcommun
07-18-2005, 04:39 PM
understood. Thank you. :)