Skip to content

Instantly share code, notes, and snippets.

@jonatanrdsantos
Created July 19, 2016 18:43
Show Gist options
  • Save jonatanrdsantos/78a4ac157b68ed9ce3d227a344393b85 to your computer and use it in GitHub Desktop.
Save jonatanrdsantos/78a4ac157b68ed9ce3d227a344393b85 to your computer and use it in GitHub Desktop.
magento stores
<?php
switch($_SERVER['HTTP_HOST']) {
case 'shoes.com':
case 'www.shoes.com':
$mageRunCode = 'shoes';
$mageRunType = 'website';
break;
case 'hats.com':
case 'www.hats.com':
$mageRunCode = 'hats';
$mageRunType = 'website';
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment