我做了一个jquery移动应用程序。现在我想只在移动设备上运行网址,而桌面设备则是假的。
很长一段时间后,我在index.html所在的应用程序文件夹中尝试htaccess文件。
mY htaccess文件是
RewriteCond %{REQUEST_URI} !^/http://originalsite.com/.*$
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteRule ^(.*)$ /http://www.othersite.com/ [L,R=302]
现在我无法在我的网站上获得效果。
我在这里错过了什么吗?
答案 0 :(得分:0)
尝试使用这些行:
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteRule ^(.*)$ http://www.othersite.com [L,R=302]