Reputation: 823
I moved a Magento site from one server to another. In the settings, I updated the base url and secure base url. Http:// works just find. Https:// redirects back to the old server.
I'm not sure where to look or what information to post. How do I fix this?
Edit:
I had made sure the base urls were correct on the GLOBAL settings. I didn't think to go down to the website and store levels. The developer before me had changed it for the store, since his dev server didn't have SSL set up. Sigh...
All's good now. Thanks Alan!
Upvotes: 0
Views: 804
Reputation: 166046
This could be one of many different things, including Magento configuration or Apache configuration.
On the Magento side, check the core_config_data
table -- specifically where the path
value is web/unsecure/base_url
and web/secure/base_url
. These fields are how Magento identifies the base site URL, and will use the secure version to redirect users back to the older site.
Also, after changing these values in core_config_data
, you'll need to clear you Magento cache (in var/cache
) to force a reload.
Update: Don't forget to check for values set at a different store/website level.
Upvotes: 1