Monday

Change your default directory page via .htaccess full detail by jani

Tody i teach you

how to Change your default directory page (index.html)

When you load a directory on the web, for example www.yoursite.com or www.yoursite.com/articles/, the apache server usually looks for the index.html file. If it can’t find that it will look for index.php or index.cgi. Index.html is usually the page with the highest priority and the one which is loaded first. It is possible to change the default directory index page. Say, for example, you wanted visitors to go to notice.html instead of index.html. All you have to add to your .htaccess file is DirectoryIndex notice.html This can be extended so that the server looks for other files if it cannot find the first one. DirectoryIndex notice.html index.cgi index.php index.html Priority goes from left to right. So the server would look for notice.html. If that file is not there it will look for index.cgi, then index.php and then index.html. You can do to this within any directory on your site. Simply upload an .htaccess file with the above code. Remember, this will supercede the .htaccess file at the root of your domain.