为magento2站点更换访问网址(域名)
感谢瓜哥。
环境:宝塔nginx,php7.0,mysql5.7,magento2
过程:
1.登录到宝塔控制面板,在数据库管理列表里,选择magento2站点使用的数据库,点击“管理”
2.在 core_config_data
数据表,找到 web/unsecure/base_url
和 web/secure/base_url
3.用新网址(域名)替换旧的
4.之后,在站点文件目录中,删除或改名原 var/cache
目录,清除缓存
5.用新网址登录到magento2后台,在系统,缓存管理页面中,更新所有相应的缓存
也可以通过magento的命令行来修改,如:php bin/magento setup:store-config:set --base-url="http://szt.anqun.org/"
php bin/magento setup:store-config:set --base-url-secure="https://szt.anqun.org/"
参考: