我通過移動設備訪問時將我的網站重定向到移動網站。htaccess重定向後從移動網站訪問父網站的文件夾
這裏的htaccess的代碼:FTP的
RewriteCond %{QUERY_STRING} !^desktop
RewriteCond %{HTTP_USER_AGENT} android|avantgo|blackberry|iphone [NC]
RewriteRule^http://m.example.com%{REQUEST_URI} [R,L]
文件夾結構是這樣的:
Images
ProImages
Mobile // All mobile site data into this
當我試圖從我的移動網站訪問http://www.example.com/ProImages/abc.jpg
,它並沒有顯示出來,因爲如一旦它試圖呼叫www
,它就會重定向到m
。
我試過使用../ProImages
但這再次沒有解決問題。
有人可以幫忙嗎?
,由於你的規則是基於'HTTP_USER_AGENT'重定向是正確的行爲。爲了防止重定向,你可以使用這個URL:'ttp://www.example.com/ProImages/abc.jpg?desktop' – anubhava