ThreeD
08-18-2004, 09:38 AM
Where in the cpanel menu can I change the file to show up when people enter my domain. When I enter my domain at http://*****.com the index.php file shows up. How can I change the file to be front_page.htm or whatever. Is there a way or do I have to rename the index.php file?
Dan L
08-18-2004, 10:59 AM
In your index.php file, try putting the code: <?php header('Location: front_page.htm'); ?> which will automatically forward to your new file.
Good luck! :)
ThreeD
08-18-2004, 11:49 AM
ok will do, thanks ;) I'll let you know if it works hehe..
topgun
08-18-2004, 01:12 PM
open your .htaccess file and add the line
DirectoryIndex front_page.htm
Dan L
08-18-2004, 01:55 PM
You should use topgun's method. :)