我可以检查 Magento PHTML 文件中的 HTTPS 吗?
我正在 Magento 网站上安装 Clicky 代码。我想仅在 Magento 启用 HTTPS 的页面上使用他们的 HTTPS 跟踪器。我该怎么做?
我尝试过,
<?php if($_SERVER['https'] == 'on') : ?>
但这不起作用。
任何有关识别 HTTPS 页面的建议都会有很大帮助!
谢谢。
I am installing Clicky code on a Magento website. I would like to use their HTTPS tracker only on HTTPS enabled pages of Magento. How can I do this?
I tried
<?php if($_SERVER['https'] == 'on') : ?>
but that doesn't work.
Any suggestions on identifying HTTPS pages will be of great help!
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Magento 实际上为您提供了一种方法。
使用它来检查您是否处于安全模式:
Magento actually provides a method for this for you.
Use this to check whether you are in secure mode:
本机 Magento 解决方案
这有助于检查您的店面是 https 还是 http
Native Magento solution
This helps to check whether your store front is in https or http
这可能看起来有点“黑客”,但您可以检查服务器协议并检查协议中是否存在字符“HTTPS”? :
This may seem like a bit of a "hack" but you could check the server protocol and check for the existence of the characters "HTTPS" in the protocol? :
最好的选择如下
The best bet is as follows