2

如何更改 Magento 中的 base_url,因为我的网站在我的 magento 管理员设置中更改后就消失了......现在我在那个 url 上收到 404 错误,管理员和前端将无法打开......

4

3 回答 3

12

在 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';
于 2011-03-03T06:21:33.657 回答
2

步骤 1:mysql -u root -penter
步骤 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:update core_config_data set value = 'https://domain.com/' where path = 'web/secure/base_url';
步骤 6:update core_config_data set value = 'http://domain.com/' where path = 'web/unsecure/base_url';
步骤 7:exit;enter
步骤 8:清除会话和缓存
步骤 9:/etc/init.d/mysql start
步骤 10:sudo service apache2 restart

于 2015-02-24T12:49:27.050 回答
2
UPDATE `core_config_data` SET `value` = replace(`value`, 'https://www.oldname.com/', 'https://www.newname.com/') WHERE `value` LIKE '%https://www.oldname.com/%';
于 2014-09-29T06:12:26.410 回答