Godaddy winodws主机如何设置首页优先级
早前的文章,笔者写过Godaddy虚拟主机如何设置首页优先级,当时针对Godaddy windows主机设置首页优先级的方法是,修改首页文件名称为优先级更高的首页文件。
附上GoDaddy windows主机首页优先级顺序
default.asp
default.html
default.htm
default.aspx
default.php
default.shtml
default.shtm
index.html
index.htm
index.asp
index.php
index.shtml
index.shtm
home.html
home.htm
home.shtml
home.shtm
welcome.html
welcome.asp
如果用了ColdFusion(Godaddy已经不再支持了),则如下文件有更高的优先级
default.cfm
default.cfml
index.cfm
index.cfml
home.cfm
home.cfml
welcome.cfm
welcome.cfml
其实,Godaddy winodws主机设置首页优先级,也可以使用配置文件web.config来设置。
在Godaddy winodws主机文件管理根目录下找到web.config文件(没有可以手动创建),然后将下列代码添加到web.config文件中并保存。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="true" />
<defaultDocument>
<files>
<clear />
<add value="index.asp" />
<add value="Default.aspx" />
<add value="index.php" />
<add value="Default.html" />
<add value="Default.htm" />
<add value="Default.asp" />
<add value="index.pl" />
<add value="index.htm" />
<add value="index.html" />
<add value="Default.cshtml" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
我们只需要修改<add vaule=”xxx” />中vaule的值就可以了,需要设置哪个首页文件为更高的首页优先级,就添加<add vaule=”xxx” />就可以了。
相关链接:Godaddy虚拟主机如何设置首页优先级
也可以访问美国主机侦探论坛Godaddy版块进行交流。