0

我想的網址:永久重定向字符串替換

https://example.com/en/category/post+name_tour123456 

指:

https://example.com/en/category/post+name+123456 

我想刪除_tour

我可以用的.htaccess做呢?

我創建了一個正則表達式匹配所有這些鏈接:

((http[s]?):\/)?\/?([^:\/\s]+)((\/\w+)*\/)([^_]+(?=_)*)(\W?_tour?)([0-9]*) 

謝謝

回答

1

所以你可以匹配的要求。試試這個規則,看看它是如何工作的。

RewriteEngine on 
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\ /en/category/(.+)\+(.+)\+_tour(.*) [NC] 
RewriteRule^/en/category/%1+%2+%3 [R=301,L]