0

我们有以下 url 结构:

www.domain.com/wordtoremove-title.html

www.domain.com/wordtoremove-title2.html

并想重写并 301 重定向到

www.domain.com/title.html

www.domain.com/title2.html

所以基本上是删除实际标题之前的单词和 301 重定向到 .htaccess 中的新 url 结构我该怎么做?提前非常感谢你..

4

1 回答 1

0

将此代码作为第一条规则放入您的DOCUMENT_ROOT/.htaccess文件中:

RewriteRule ^[^-]+(.+?\.html)$ $1 [L,NC,R=301]
于 2013-11-11T21:22:58.860 回答