Magento 2:命令行 修改Base url

Magento 2:命令行 修改Base url

magento 更改base url的解决办法:

1、phpmyadmin或者其他可视化处理;

2、Magento 2 CLI command

到magento 根目录下,执行

<code>php bin/magento setup:store-config:set --base-url="http://localhost:8080/"</code>

ps:用心base url替换 http://localhost:8080/ 。

同样 base url secure

<code>php bin/magento setup:store-config:set --base-url-secure="https://localhost:8080/"</code>

最后记得清除缓存,重新编译加载。

0