Setting up multiple websites or stores with Magento
There are many tutorials how Magento set to work with several branches in different domains and save at any point. Since the release of Magento and Magento beta1 CE 1.4.0.0 1.6.0.0 EE to do it just yet.
Magento evolves
Solutions used in earlier versions require developers to change index.php file to show different areas to be treated in different stores. New index php contains the following code:
$ MageRunCode = isset ($ _SERVER ['MAGE_RUN_CODE'])? $ _SERVER ['MAGE_RUN_CODE']:''; $ MageRunType = isset ($ _SERVER ['MAGE_RUN_TYPE'])? $ _SERVER ['MAGE_RUN_TYPE']: 'Save'; Mage:: run ($ mageRunCode, mageRunType $);
Shall examine two environmental projects variables and use them to start runing Magento. What does it mean to you? You can now save for the website / run directly under the selected domain in the virtual host definition, or even to htaccess.
VirtualHost solution
To enjoy this little piece of code is enough to add the following lines to your VirtualHost definition:
SetEnv MAGE_RUN_CODE base "" # this is your site or store code SetEnv MAGE_RUN_TYPE "Website" # you set this website "or" store "
.htaccess solution
If you do not have access to virtual host definitions, you can still try to use. Htaccess for this by the following lines:
SetEnvIf Host .* .* yourhost MAGE_RUN_CODE = "base"; SetEnvIf Host .* .* yourhost MAGE_RUN_TYPE = "Website"; Where yourhost .* .* is a regex expression matching the domain for which you want environment variable.
Recent Posts
Why Google Hates Black Hat SEO: How Unethical Tactics Damage Search Engines
What is Black Hat SEO? Black hat SEO is a set of dishonest techniques used to boost a website’s search engine ranking. U...
Essential WooCommerce Security Plugins and Tips for a Secure Store
Are you looking for the best wooCommerce plugins for your secure store? If you keep reading this blog, we will show you the m...
How to Improve Your Ecommerce Website’s User Experience for Higher Conversions
Creating a good user experience on your e-commerce website is important for driving conversion. Every user expects a fast and...
How Virtual Shopping is Shaping the Future of E-commerce?
Virtual reality has changed so many businesses, including e-commerce. Virtual shopping is becoming a groundbreaking trend tha...