网站首页文件名通常命名如何设置重定向
标准首页命名
文件名 | 适用场景 |
---|---|
index.html |
静态网站通用 |
index.php | PHP动态网站 |
default.asp |
老旧ASP网站 |
重定向方法
1. 通过.htaccess
(Apache)
apacheconf
# 将所有访问根目录的请求指向index.html RewriteEngine On RewriteRule ^$ /index.html [L] # 旧首页重定向到新首页 Redirect 301 /old_index.html /index.html
Nginx
配置
nginx
location / { try_files $uri $uri/ /index.html; }
php
<?php header("Location: /index.html", true, 301); exit(); ?>
更新时间:2025-07-22 16:46:30
上一篇:网页底下的小字是什么?