我怎样才能阻止我的.htaccess文件重定向iPad用户到我的移动网站?我的、重定向、文件、用户

2023-09-02 10:03:44 作者:岁月静好

我在我的.htaccess文件我目前有:

I my .htaccess file I currently have:

RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} "smartphone|rover|ipaq|au-mic,|alcatel|ericy|vodafone/|wap1.|wap2.|iPhone|android"[NC]
RewriteCond %{REQUEST_URI} !^/m/
RewriteRule ^.*$ http://www.mydomain.com/m/$0 [R=301,L]

当一个人带一台iPad,他登录/她被重定向= /移动版本。我希望他们能够看到正常的网站(不 / M / )。

When someone logs in with an iPad he/she gets redirected =/ to the mobile version as well. I'd like them to see the normal site (without the /m/).

推荐答案

添加另一个

RewriteCond %{HTTP_USER_AGENT} "iPad"[NC]
RewriteCond %{REQUEST_URI} !^/
RewriteRule ^.*$ http://www.mydomain.com/$0 [R=301,L]