如何更改magento中的base_url。,因为我的网站在我在我的magento管理员上更改后就消失了
如何更改 Magento 中的 base_url,因为我的网站在我在 magento 管理设置中更改后就消失了...现在我在该 url 上收到 404 错误,管理和前端将无法打开...
How to change the base_url in Magento, because my site were gone after i changed that on my magento admin settings... Now i got 404 error on that url, the admin and frontend won't open...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 mysql 中执行以下查询(通过 phpmyadmin 或命令行)以查看当前值是什么:
然后进行相应更新
execute the following query in mysql (via phpmyadmin or command line) to see what the current values are:
and then update accordingly
步骤1:
mysql -u root -p
按输入第 2 步:输入您的数据库密码
步骤 3:
select * from core_config_data where path = 'web/unsecure/base_url';
步骤 4:
select * from core_config_data where path = 'web/secure/base_url';
步骤 5:
更新 core_config_data set value = 'https://domain.com/' where path = 'web/secure/base_url';
步骤 6:
更新 core_config_data set value = 'http://domain.com/' where path = 'web/unsecure/base_url';
第 7 步:
退出;
按输入步骤8:清除会话和缓存
步骤9:
/etc/init.d/mysql start
步骤10:
sudo service apache2 restart
step 1:
mysql -u root -p
press enterstep 2: Enter your database password
step 3:
select * from core_config_data where path = 'web/unsecure/base_url';
step 4:
select * from core_config_data where path = 'web/secure/base_url';
step 5:
update core_config_data set value = 'https://domain.com/' where path = 'web/secure/base_url';
step 6:
update core_config_data set value = 'http://domain.com/' where path = 'web/unsecure/base_url';
step 7:
exit;
press enterstep 8: clear session and cache
step 9:
/etc/init.d/mysql start
step 10:
sudo service apache2 restart