【发布时间】:2018-06-08 00:29:13
【问题描述】:
我正在尝试将 index.html 重定向到 home.html 并通过 .htaccess 从 url 中删除该 home.html。但它显示页面没有正确重定向。 这意味着我需要将 mydomain.com/index.html 重定向到 mydomain.com/home.html 并且仅在访问索引页面时才需要显示 mydomain.com/。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Redirect 301 "/index.html" "/home.html"
RewriteCond %{THE_REQUEST} ^GET.*home\.html [NC]
RewriteRule (.*?)home\.html/*(.*) /$1$2 [R=301,NE,L]
</IfModule>
【问题讨论】: