Thursday, April 1, 2010

How to Set Default Page on Selected Website in apache

This articale will explain how to you set default page on selected website in apache web Server for expamle default page indexes like this index.html index.php default.php and so on but you need to set default page would be default.htm on Selected Website then,

You need to do given bellow changes in apche on selected website

<VirtualHost *:8O>
ServerName www.example.org
ServerAlias example.org
DocumentRoot /home/username/public_html/
User username
Group groupname
DirectoryIndex default.htm
</VirtualHost>

No comments:

Post a Comment