Pour la création de magento à plusieurs magasins, nous utilisons le code suivant
$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : '';
$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store';
Mage::run($mageRunCode, $mageRunType);
Quelle sera la différence si nous utilisons au website
lieu de store
dans le $_SERVER['MAGE_RUN_TYPE'] : 'store';
code