301将所有“ Site.com/Postname.html/xyz”重定向到“ Site.com/Postname.html”

时间:2019-07-11 06:31:25

标签: wordpress apache .htaccess

大约1000个链接的结构与下面的链接类似。

  

https://url.com/1200/postname.html/xyz1a2b3

现在,我想使用重定向301将所有这些链接转移到它们的正确地址,如下所示:

  

https://url.com/1200/postname.html

我该怎么做? 谢谢

1 个答案:

答案 0 :(得分:2)

您可以使用RewriteRule来重定向您的URL。 关于您的URL,您需要使用([0-9]+)来表示URL中的数字部分,并使用([A-Za-z0-9-]*)来表示数字和字符部分。

赞:


RewriteEngine On
RewriteBase /
RewriteRule ^([0-9]+)/([A-Za-z0-9-]*).html/([A-Za-z0-9-]*) https://url.com/$1/$2.html [R=301,L]