7 MagentoのWebサイトで、SSL証明書を一部のページのみに構成しました。現在のページが持っているhttp://かどうかを確認するにはどうすればよいhttps://ですか? Magento 1.9を使用しています magento-1.9 url ssl — マゼント2 ソース
8 別の解決策として以下を使用できます: if (Mage::app()->getStore()->isFrontUrlSecure() && Mage::app()->getRequest()->isSecure() ) { // current page is https }else { // current page is http } — アミットベラ ソース サイトにSSLを追加しました。選択したページをhttpsではなくhttp urlにリダイレクトします。どうすればそれを行うことができますか? — Sarfaraj Sipai
10 使用できます $isSecure = Mage::app()->getStore()->isCurrentlySecure(); または $isSecure = Mage::app()->getFrontController()->getRequest()->isSecure(); ソースはこちら。 — ムバルパルダ ソース