Magento makes life easy by providing Multiple Stores. This setup can be done at any stage, even after the setup.
All the Magento Stores can be managed and shared from a single backend Admin panel.
We can also share all the customers between stores.
For this in each Store you need to create Web store in main Magento admin installation:
To do this Just login to Magento Admin panel as an Administrator.
Follow the below steps.
System –> Manage Stores –> Create Website
Name: Enter the name of the desired domain (“mex.com”) as shown in below.
Code : Enter identifier for that domain (“mex_com”)
Next go to:
System –> Manage Stores –> Create Store
Website: Select “mex.com” from dropdown menu.
Name: Use same mex_com to identify same store.
Root Category: You can have different Categories for each website for now we will select ‘Default Category’

To Create Another categories goto:
Catalog –> Manage Categories –> Add Root Category
You can add categories for the new website.
Now you need to setup Store View goto:
System > Manage Stores > Create Store View
Store: select “mex_com” from dropdown menu.
Name and Code enter “mex_com” Make sure to enter only smaller case, its Case Sensitive
Status: “Enabled”
To setup Magento on different domains you need to update following two files:
You can find the below two sample file in magento home directory .htaccess.sample and index.php.sample. Just rename both sample files as below names,.
1) .htacces
2) index.php
Open “index.php” and modify line which begins with “$mageFilename” in Magento 1.4.1 it is on line no 45
$mageFilename = ‘magento_installation_path/app/Mage.php’;
And on line no 68:
$mageRunCode = isset ($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : ”;
Replace with:
$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : ‘mex_com’;
To Setup a Different Look and Feel or Theme
You need to update media, skin and javascript file.
We can copy these files from the previous installation to new domain, We can also set this from Magento admin panel:
System –> Configuration –> Under Current Configuration Scope: select your website/store from dropdown (“mex_com”)
Click on Web and under Secure and Unsecure you need to modify:
If this is on same folder then no need to modify anything
else modify the below.
Base Skin URL (example: http://mex.com/skin/)
Base Media URL (example: http://mex.com/media/)
Base JavaScript URL (example: http://mex.com/js/)
You are done now. This is how we create multiple stores on magento.
If you need any further clarifications / assistance http://www.magento-exchange.com/contact-us/





Hi Stalin to do it but seems not working anymore with magento 1.5 final, already redirected to the default url :s Do you have an idea ?
Marc I followed the above for Magento 1.5.0.1 It worked gr8. Its working same as its working for 1.4.1.1, where are you facing problem
Great info, but it is not working!
I am using Magento 1.5.0.1
I really prefer that procedure:
http://www.magentocommerce.com/blog/comments/from-the-support-team-multi-site-domain-name-setup/