网站默认首页名是什么?各系统对比
3.1 主流系统默认首页
系统类型 | 默认首页顺序 | 配置文件位置 |
---|---|---|
Apache | index.html > index.php > default.html | /etc/httpd/conf/httpd.conf |
Nginx | index index.html index.htm index.php | /etc/nginx/nginx.conf |
IIS | default.aspx > index.html > default.htm | 应用Hosting配置 |
Tomcat | index.jsp > index.html > index.htm | conf/web.xml |
3.2 修改方法示例
nginx
# Nginx修改示例 server { index index.html index.php home.html; }
3.3 注意事项
- 多个首页文件会按顺序匹配
- Windows系统区分大小写
- 修改后需重启服务生效
更新时间:2025-06-21 23:18:42