0

如何使用 apache mod_rewrite将http://example.com/about重定向到http://example.com/about-us ?

我在 .htaccess 文件中编写了以下代码。但是我收到太多重定向错误。

#RewriteRule about    http://example.com/about-us [R=301,L]

帮助我找到解决此问题的方法。

4

1 回答 1

1

试试这个(正则表达式^about$不匹配about-us。):

RewriteRule ^about$    http://example.com/about-us [R=301,L]

在这种情况下,您可以改用RedirectMatch指令。

于 2012-12-09T15:53:21.750 回答