Magento 2 || Update URL - mpaz-redstage/magento-snippets GitHub Wiki
Update URL Magento 2
Find the URLs Magento 2
select * from core_config_data where value like '%http%'
Update URLs Magento 2
update core_config_data set value = 'http://domainname/' where path = 'web/unsecure/base_url';
update core_config_data set value = 'http://domainname/' where path = 'web/secure/base_url';