【发布时间】:2015-09-11 13:35:06
【问题描述】:
我想重定向以下内容:
http://www.mywebsite.com/monkey
should become
http://www.mywebsite.com/chimpansee
与
http://www.mywebsite.com/monkey/index.html
should become
http://www.mywebsite.com/chimpansee/index.html
以下代码适用于第二种情况(使用 index.html)。如何让它适用于这两种情况?
RewriteCond %{THE_REQUEST} ^GET\ /monkey/
RewriteRule ^monkey/(.*) /chimpansee/$1 [L,R=301]
【问题讨论】:
-
“以下代码有效” - 该代码不会做任何事情,它只是重定向到自身。您是否只想按照您的代码 sn-p 的建议重定向
index.html或 everything? -
您的 .htaccess 中有更多规则吗?
标签: .htaccess mod-rewrite redirect