RewriteRule:仅匹配字符串的第一次出现。匹配/ mystring但不是/ some / path / to / mystring

时间:2016-03-15 17:05:10

标签: apache .htaccess mod-rewrite

我在.htaccess中有以下RewriteRule:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^mystringtoreplace/?$ http://www.example.com/some/other/path/mystringtoreplace [L]

意图是将http://www.example.com/mystringtoreplace重定向到http://www.example.com/some/other/path/mystringtoreplace

我得到的是太多的重定向错误" ERR_TOO_MANY_REDIRECTS"。

如何为该问题编写正确的RewriteRule?

1 个答案:

答案 0 :(得分:0)

实际上RewriteRule是正确的。 WordPress Permalink出现问题。见上面的评论。