Is it possible to set different domains on one website name in Magento 1.9?
Is it even possible to set this in store level?
EDIT: I also did the costumisation in index.php file
if(stripos($http_host, 'mywebsite.de') !== false){ $mageRunCode = "mywebsite"; $mageRunType = "website"; }elseif(stripos($http_host, 'mywebsite.com') !== false){ $mageRunCode = "mywebsite"; $mageRunType = "website"; } and set the Base URL on different Current Configuration Scopes.


