電話から、ユーザーがにアクセスしようとするとwebsite.com
、にリダイレクトされmobile.website.com
ます。ただし、mobile.website.com
にAJAXリクエストをwebsite.com
行うので、すべてのリクエストをに通過させwebsite.com/m/...
ます。これは機能していません:
# 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]
RewriteCond %{REQUEST_URI} !^/m/ [NC]
RewriteRule ^(.*)$ http://www.mobile.website.com/$1 [L,R=302]
具体的には次の行です。
RewriteCond %{REQUEST_URI} !^/m/ [NC]
URLがに一致する場合は、書き換えルールをキャンセルする必要がありwebsite.com/m/...
ます。何か案は?
ありがとう!