任何人都可以帮助我吗?
将magento 2.0.2文件上传到实时服务器并将数据库导入PHPMYAdmin后,索引会自动重定向到已传输文件的localhost。我知道需要更改URL路径但是没有找到正确的位置,在magento 1.9中更改数据库表(core_config_data表)中的路径但是如何在magento 2.0.2中更改正确的路径?
您的帮助将不胜感激:) 感谢名单
答案 0 :(得分:3)
我知道你修好了,但在这里我的解决方案,也许它有助于其他人:
当你从本地转到现场时,你切换你的域名并需要告诉Magento它。一种简单的方法是在CLI上执行:
# http:// or https://, and a trailing slash /.
./bin/magento setup:store-config:set --base-url="http://your-domain.com/"
./bin/magento setup:store-config:set --base-url-secure="https://your-domain.com/"
# clear cache
./bin/magento cache:flush