Web Hosting Talk







View Full Version : .htaccess change default directory to folder


Dan541
08-18-2006, 07:22 AM
Im farliliar with

DirectoryIndex filename.html

but it there another code that will allow people going to mydomain.com to goto mydomain.com/home ?

thanks
~Dan

latheesan
08-19-2006, 09:28 PM
instead of using .htaccess, put this code into index.php and upload it to root of your domain, i.e. mydomain.com

index.php
<?php header("Location: home"); ?>

~Simple, hope that helps.