Getting the Secure (HTTPS) url for Magento

Say you want to redirect a customer to a URL. In Magento you'd invoke this little bit of code to produce the URL.

Mage::getUrl('<em>/</em>/post') 

This will produce a url like http://www.example.com/<module>/<controller>/post. The '*' just inserts the current module and controller.

Now you want to redirect to the secure version. Easy. Just simply say so

Mage::getUrl('<em>/</em>/post', array('_secure'=>true)) 

Now that was simple.

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • Web page addresses and e-mail addresses turn into links automatically.
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <drupal5>, <drupal6>, <javascript>, <php>, <sql>. Beside the tag style "<foo>" it is also possible to use "[foo]".

More information about formatting options