Magento 1.9和nginx - ssl重定向循环

时间:2016-08-19 09:41:38

标签: magento ssl nginx

我在nginx服务器上安装了magento 1.9.2.4。当我为前端和后端启用SSL时,现在当我尝试访问站点中的任何页面时出现此错误:页面未正确重定向。 / p>

我的db core_config_data如图所示:

enter image description here

1 个答案:

答案 0 :(得分:2)

最好给出一个完整的步骤,如何更改Magento URL

检查当前状态: 从core_config_data中选择*,其中路径类似于'%base%url%';

更新网址: 更新core_config_data设置值=' https://domainname/'其中path =' web / unsecure / base_url&#39 ;; 更新core_config_data设置值=' https://domainname/'其中path =' web / secure / base_url';

在WebServer中: 请不要关闭80端口,直到确保没有http请求 另一个解决方案是添加301重定向

server {
      listen         80;
      server_name    XXXX.com;
      return         301 https://$server_name$request_uri;
}

清除缓存: 禁用所有缓存

如果您使用Redis或干净文件缓存

,则刷新Redis