如何更改magento中的base_url。,因为我的网站在我在我的magento管理员上更改后就消失了

发布于 2024-10-20 08:15:40 字数 99 浏览 1 评论 0原文

如何更改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

远昼 2024-10-27 08:15:40

在 mysql 中执行以下查询(通过 phpmyadmin 或命令行)以查看当前值是什么:

select * from core_config_data where path like '%base%url%'; 

然后进行相应更新

update core_config_data set value = 'http://myhostname/js/' where path = 'web/unsecure/base_js_url';

execute the following query in mysql (via phpmyadmin or command line) to see what the current values are:

select * from core_config_data where path like '%base%url%'; 

and then update accordingly

update core_config_data set value = 'http://myhostname/js/' where path = 'web/unsecure/base_js_url';
南七夏 2024-10-27 08:15:40
UPDATE `core_config_data` SET `value` = replace(`value`, 'https://www.oldname.com/', 'https://www.newname.com/') WHERE `value` LIKE '%https://www.oldname.com/%';
UPDATE `core_config_data` SET `value` = replace(`value`, 'https://www.oldname.com/', 'https://www.newname.com/') WHERE `value` LIKE '%https://www.oldname.com/%';
自找没趣 2024-10-27 08:15:40

步骤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 enter
step 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 enter
step 8: clear session and cache
step 9: /etc/init.d/mysql start
step 10: sudo service apache2 restart

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文