我正在尝试将 android/Iphone/Ipad 用户重定向到不同的网址(子域),但每次它在我的平板电脑上重定向时都会弹出“该页面包含太多服务器重定向”??我在服务器上的 htaccess 代码如下 >
Options -MultiViews +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteCond %{HTTP_HOST} !^eco-fireplaces.co.uk/mob.html
RewriteRule ^(.*)$ http://m.eco-fireplaces.co.uk/mob.html[R=307,L,NC]
这会将我的 android 设备重定向到http://m.eco-fireplaces.co.uk/mob.html%5bR=307,L,NC%5d
但出现“页面包含太多服务器重定向”??错误
有人可以帮我解决这个问题吗?