我有一个移动 url,我想重定向到子域 m。
即 example.com/mobile 到 m.example.com
但是,当我有网址 example.com/mobile/boston_resources/
它重定向到 m.example.com/mobile/boston_resources/?city=boston(而不是 m.example.com/mobile/boston_resources/)
我在用着:
RewriteCond %{QUERY_STRING} page=[1-9]+ [NC,OR]
RedirectMatch 301 ^/mobile/(.*)$ http://m.example.com/$1
任何帮助表示赞赏