htaccess规则从url中删除重复的字符串

时间:2017-08-07 21:17:19

标签: apache .htaccess redirect

我有这样的网址:

domain/mobile/mobile/ascent-c-662.html

我需要重定向到:

domain/mobile/ascent-c-662.html

我已经尝试过遵循规则,但它没有奏效:

RewriteRule mobile\w*(.*?)(mobile(\w*))?(\..*) mobile$1umair$3$4 [QSA,NC]

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteRule (.*)/mobile/mobile $1/mobile [R=301,L]

或使用您的域名更改example.com,并尝试以下内容:

RewriteEngine On
RewriteRule (.*)/mobile/mobile(.*) http://www.example.com/mobile$2 [L,R=301]