我們正在運行Magento CE 1.6.2,並且我們想要運行另一個商店。我們已經正確配置了store2.com,但是我們遇到了問題:Magento Multistore:將非www重定向到www
store1.com重定向到www.store1.com:好吧 store2.com和www.store2.com重定向到www.store1.com:不行
這裏是我們的.htaccess:
SetEnvIf Host .*store2.com MAGE_RUN_CODE=store2_com
SetEnvIf Host .*store2.com MAGE_RUN_TYPE=website
重定向非WWW到www我們使用:
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
這個配置不起作用。
我們在store2.com上運行一個託管域,並在store1.com和store2.com之間共享託管。
希望你能幫助我們並對我的英語感到抱歉。
謝謝您的幫助 昆汀