htaccess 仅针对域根将 index.html 重定向到 index.php
Posted
技术标签:
【中文标题】htaccess 仅针对域根将 index.html 重定向到 index.php【英文标题】:htaccess redirect index.html to index.php for domain root only 【发布时间】:2015-01-27 02:38:08 【问题描述】:我有一个 htaccess 规则将 index.html 重定向到 index.php
RewriteCond %THE_REQUEST ^[A-Z]3,9\ /.*index\.html\ HTTP/
RewriteRule ^(.*)index\.html$ /$1index.php [R=301,L]
这很好用 - 当我调用 http://mydomainname.com/index.html 时,它会将我重定向到 http://mydomainname.com/index.php
但我遇到了一个问题,当子文件夹中有一个名为 index.html 的文件时,我的 htaccess 规则会将其带到 index.php。
例如 - http://mydomainname.com/subfolder/index.html 到 http://mydomainname.com/subfolder/index.php,这不应该发生在子文件夹中。
有什么办法吗?
【问题讨论】:
【参考方案1】:对于您正在做的事情,这条规则可能有点过于复杂。
你只需要:
RewriteRule ^index.html$ /index.php [R,L]
【讨论】:
[R]
:Redirect, [L]
:Last - 虽然我感觉[R]
本身暗示了[L]
,但不再处理任何规则【参考方案2】:
试试这个。它适用于我的情况。
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html?$ / [NC,R,L]
访问:https://css-tricks.com/how-to-redirect-indexhtml-to-indexphp/
【讨论】:
以上是关于htaccess 仅针对域根将 index.html 重定向到 index.php的主要内容,如果未能解决你的问题,请参考以下文章
为啥我的 .htaccess 仅针对 https / ssl 不将 uri 路径重定向到 index.php?