我在我的 htaccess 中使用以下代码段:
# redirect phones/tablets to mobile site
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteCond %{HTTP_HOST} !mobile\.website\.com [NC]
RewriteRule ^(.*)$ http://www.mobile.website.com/$1 [L,R=302]
但是,在我的移动应用程序中,我向 发出 AJAX 请求www.website.com/mobile
,但它们都失败了。如何发送这些 AJAX 请求并仍然重定向它们?