1

我有一个网站,其中存在多个讨论同一主题的页面,并且基本上有很多重复的内容。

我需要将所有这些页面重定向到一个子目录。我现在使用的代码是 -

redirect 301 /simple.html http://domain.com/acts
redirect 301 /tough.html http://domain.com/acts
redirect 301 /hard/hardacts.html http://domain.com/acts

我想使用更简洁的格式,否则会导致.htaccess文件非常长。

任何帮助,将不胜感激。

4

1 回答 1

2

只需为每个主题创建一个重定向匹配规则,例如

RedirectMatch 301 ^/([^/]+/)*(simple|tough|hardacts)\.html$ http://domain.com/acts

这会将在任何地方找到的所有simple.html文件重定向tough到.hardacts/acts

于 2013-08-25T22:32:45.820 回答