打开网站指向的是不是index而是main

来源:百度知道 编辑:UC知道 时间:2024/06/03 17:35:35
www.szlemi.com.cn这个网站下有两个页面,一个是index.asp一个是main.asp输入网址后打开的是main.asp这是为什么

IIS服务器设定的欢迎页面是 main.asp

比如tomcat服务器里也可以在web.xml设定
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
第一种格式就是默认打开index.html,如果改成main.html则是打开main.html