Magento 更改网站的url地址

有时候在配置Magento网站的时候。自己确定完整的url地址配置正常,但是在打开网站的时候,显示的是另外的URl网站 这个时候。需要检查数据库表存在的地址是否正常。

在magento 中的URL地址存在在 这个表里面(core_config_data)

检查方法:、

select * from  core_config_data where config_id =9 \G;
select * from  core_config_data where config_id =10 \G;
mysql> select * from  core_config_data where config_id =9 \G;
*************************** 1. row ***************************
config_id: 9
    scope: default
 scope_id: 0
     path: web/unsecure/base_url
    value: http://206.189.211.25:8070/
1 row in set (0.00 sec)

ERROR:
No query specified

mysql> select * from  core_config_data where config_id =10 \G;
*************************** 1. row ***************************
config_id: 10
    scope: default
 scope_id: 0
     path: web/secure/base_url
    value: http://206.189.211.25:8070/
1 row in set (0.00 sec)

ERROR:
No query specified

如果检查不对,修改方法:

 update core_config_data set value = 'http://lollicupcd.com/' where config_id =9;
 update core_config_data set value = 'http://lollicupcd.com/' where config_id =10;

Leave a comment

您的电子邮箱地址不会被公开。 必填项已用 * 标注