网友的相关建议:
godaddy linux主机默认凯发凯发官网首页下载官网首页下载首页顺序如下,不能修改,如果要把index.html作为凯发凯发官网首页下载官网首页下载首页,把排在前面的文件删掉即可----主机巴士论坛:
default.html
default.htm
index.php
index.shtml
index.html
index.htm
home.html
home.htm
index.php5
welcome.html
welcome.htm
note: 如果启用了coldfusion,
index.cfm和default.cfm排在第11和第12位。如果启用了java则index.jsp排在第10位。
网友的相关建议:
1.如果是apache 的web服务器,那么就在/etc/httpd/conf/httpd.conf文件中的directoryindex 后面添加index.html支持。因为默认的apache情况下,只是支持index.htm网页。2.并且在apache的配置文件/etc/httpd/conf/httpd.conf里面的documentroot后面的双引号里面写清楚网站的凯发凯发官网首页下载官网首页下载首页index.html所在的文件夹路径.如:/var/www/html3.如果是nginx的web服务器,就要在虚拟主机设置里面设置好网页的凯发凯发官网首页下载官网首页下载首页格式和网页文件的存放目录了。比如:server{ listen 80; server_name xxx.com; access_log logs/xxx.com.access.log combined; location / { index.html index.htm; #默认的网页凯发凯发官网首页下载官网首页下载首页文件,顺序从左到右。 root /data0/htdocs/xxx.xxx.com;#网页的文件存放的目录 }}卢韬旭