Last active
January 10, 2017 11:02
-
-
Save mkdizajn/5712725 to your computer and use it in GitHub Desktop.
magento local.xml override stores base url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<config> | |
<global> | |
<!-- ... --> | |
</global> | |
<stores> | |
<default> | |
<web> | |
<unsecure> | |
<base_url>http://beispiel.tld/shop/</base_url> | |
</unsecure> | |
</default> | |
<admin> | |
<web> | |
<unsecure> | |
<base_url>https://beispiel.tld/shop/</base_url> | |
</unsecure> | |
</admin> | |
</stores> | |
</config> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just mentioning, the "default" tag under "stores" is actually the store view code. So if you have a different store view code, change this.