通过移动设备访问时,我将网站重定向到移动网站.
这是htaccess代码:
RewriteCond %{QUERY_STRING} !^desktop
RewriteCond %{HTTP_USER_AGENT} android|avantgo|blackberry|iphone [NC]
RewriteRule ^ http://m.example.com%{REQUEST_URI} [R,L]
FTP的文件夹结构如下:
Images
ProImages
Mobile // All mobile site data into this
当我尝试从我的移动网站访问http://www.example.com/ProImages/abc.jpg时,它没有出现,因为一旦它尝试调用www,它就会重定向到m.
我尝试使用../ProImages,但这又不能解决问题.
有人可以帮忙吗?
解决方法:
您可以允许访问移动版本的图像文件夹
RewriteCond %{QUERY_STRING} !^desktop
RewriteCond %{HTTP_USER_AGENT} android|avantgo|blackberry|iphone [NC]
RewriteCond %{REQUEST_URI} !^/ProImages/ [NC]
RewriteRule ^ http://m.example.com%{REQUEST_URI} [R,L]