2014-09-21 71 views
0

我有一個magento商店正在運行(www.domain),因爲我還創建了一個速度門(可通過www.domain.com/home訪問)。現在我還安裝了一個移動主題。移動主題不在子域上,但是由於Magento中的設計選項,Magento認可移動用戶將他們引導到移動網站(也僅限於www.domain.com)。將桌面流量重定向到ww.domain.com/home

現在我想要做的是,當桌面用戶訪問www.domain.com,將其重定向到www.domain.com/home(speeddoor),當移動用戶訪問他們時,他們將訪問www.domain.com

我試着將以下內容添加到Magento根目錄下的.htaccess文件中,但下面的代碼做了相反的處理。它將移動用戶重定向到domain.com/home和桌面到domain.com。我如何才能達到相反。

#RewriteCond %{REQUEST_URI} !^/home/.*$ 
#RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC] 
#RewriteRule ^(.*)$ /home/ [L,R=302] 

在此先感謝

回答

0

你需要一個!,表明你想要的用戶代理匹配移動字符串:

RewriteCond %{REQUEST_URI} !^/home/.*$ 
RewriteCond %{HTTP_USER_AGENT} !"android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC] 
RewriteRule ^(.*)$ /home/ [L,R=302] 
相關問題