2017-01-22 88 views
0

這是我目前有重定向/移動/ REQUEST_URI到/ REQUEST_URI

RedirectMatch 301 ^/mobile/ https://www.websitename.com/? 
RedirectMatch 301 ^/m/ https://www.websitename.com/? 

我試着去重定向如果用戶類型/m/testpage.php到/testpage.php

上面的例子總是重定向到相同的網址。

回答

0

找到了答案:

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