magento 1.4.2.0 中自定义模块面临重定向问题
我已经在 magento 中设置了安全 url,并且还在前端变量中设置了使用安全 url。它在默认的 magento 模块中工作得很好,我们制作了自定义模块,通过 302 重定向重定向到安全 url。我想将它重定向到默认的 magento 工作。
请在这方面提供帮助。
i have set secure url in magento and also set use secure url in front end variable. it is working perfect in default magento modules, we have made custom module wich is redirecting to secure url by 302 redirection. i want to redirect it to as default magento works.
Please help in this regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
聪明,OP,已经自我回答了这个问题。
引用:
注意:绝对好的自我回答你自己的问题。请仅将其作为真实答案发布,但不要出现在问题或评论中。作为真实答案发布有助于使“未答复”列表更加清晰(避免让其他人浪费时间)。
smart, the OP, already self-answered the question.
Quote:
Note: It's absolutely OK to self-answer your own question. Please just post it as an real answer, but not in a question or comment. Posting as real answer helps to keep the "Unanswered" list more clear (avoids making other people wasting their time).
您可以在 config.xml 中为
和
路由器添加不同的“frontName”您的模块的文件。例如,您可以在下面的 config.xml 代码中看到管理路由器和前端路由器具有不同的名称。管理路由器名称是frontName。前端路由器名称为 frontName1
来源:https://magecracker.wordpress.com/2013/01/11/why-magento-custom-module-frontend-url-is-forced -到-https/
You can add different "frontName" for
<admin>
and<frontend>
routers in config.xml file of your module.For example, you can see in the config.xml code below that admin and frontend routers have different name. Admin router name is frontName. Frontend router name is frontName1
Source: https://magecracker.wordpress.com/2013/01/11/why-magento-custom-module-frontend-url-is-forced-to-https/