Em Quickshop HTTP和https问题 [英] Em Quickshop http and https issues

查看:67
本文介绍了Em Quickshop HTTP和https问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Em Quickshop,并且可以分别使用http或https正常工作.

I am using Em Quickshop and it's working fine with http or https separately.

当我同时使用http和https时,Quickshop会给我类似此网站的内容不安全"之类的错误,我只得到一个空白页.

When I am using http and https together, then Quickshop gives me an error like "the contents of this website is not secure" and I just get a blank page.

我正在使用Magento 1.9.1.

I am using Magento 1.9.1.

推荐答案

此问题的出现是因为magento创建了 HTTPs urls 的堆栈,通常所有管理员 URLs 添加到此堆栈.
要解决重定向到 HTTPS 而不是 HTTP 的问题,您需要更改 EM_Quickshop 模块的 frontName >

This problem arrives because of magento create a stack of HTTPs urls usually all admin URLs add to this stack.
To resolve issue of redirection to HTTPS instead of HTTP, you need to change frontName of the EM_Quickshop module

/app/code/community/EM/Quickshop/etc/config.xml

将管理部分的 frontName < frontName> quickshop</frontName> 更改为

<frontName>quick_shp</frontName>
<admin>
        <routers>
            <quickshop>
                <use>admin</use>
                <args>
                    <module>EM_Quickshop</module>
                    <frontName>quick_shp</frontName>
                </args>
            </quickshop>
        </routers>
    </admin>

这篇关于Em Quickshop HTTP和https问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆