setting a default page.

Status
Not open for further replies.

darshanu

New Member
Messages
1
Reaction score
0
Points
0
I don't know how to make a page the default page of my website. i see the "index of/" page when i make a request of my website.
 

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
Call the file you want to be default index.html, or index.php if you are gonna use PHP
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Another alternative is to use .htaccess to set the default page name.
You can list as many as you want and the server will look for them in order:


Code:
DirectoryIndex  index.html index.htm home.html starthere.php

Remember that *nix is case sensitive. index.html is not the same as Index.html
 
Status
Not open for further replies.
Top