0

我的网络服务器中有一个重定向规则。

  1. 将所有来自 android、windows phone、black berry、iPhone 的请求重定向到另一个站点主页
  2. 所有其他请求应重定向到主页

    # For mobile devices:
    RewriteCond %{HTTP_USER_AGENT} (android|blackberry|iphone|ipod|windows\ phone) [NC]
    RewriteRule ^ http://test.com/ [L,R=301]
    
    # For non-mobile devices non smart phones:
    RewriteRule ^(.*)$ http://test.com/mobil$1 [L,R=301]
    

当我从桌面访问它时,理想情况下它应该转到http://test.com/mobil$1. 但它会http://test.com/

谁能告诉这里到底出了什么问题。

4

0 回答 0