在Magento上运行多个商店

时间:2015-03-13 16:59:44

标签: magento magento-1.7 multistore

我在magento 1.7 ..中运行了两家商店。

abc.example.com xyz.example.com

abc.example.com是主要商店,我从那里使用magento管理面板。

在xyz.example中我将索引文件更改为 法师::运行($ mageRunCode,$ mageRunType); 至 法师::运行( 'xyz_code', 'xyz.example.com');

但是我正在重定向到404页面。当我保持第一个参数为空时,如Mage :: run('','xyz.example.com');网页打开abc.example.com

知道导致这种情况的原因吗?

1 个答案:

答案 0 :(得分:0)

将索引文件更改为Mage :: run($ mageRunCode,$ mageRunType);到Mage :: run(' xyz_code',' xyz.example.com')。您需要创建指向几个目录的符号链接。

ln -s ../public_html/app ./app
ln -s ../public_html/errors ./errors
ln -s ../public_html/includes ./includes
ln -s ../public_html/js ./js
ln -s ../public_html/lib ./lib
ln -s ../public_html/media ./media
ln -s ../public_html/skin ./skin
ln -s ../public_html/var ./var

这可能会对你有所帮助。 http://www.magentocommerce.com/wiki/4_-_themes_and_template_customization/navigation/multiple-website-setup