up vote 1 down vote favorite
1
share [g+] share [fb]

I am using Zend Framework(MVC part of it), and need to either redirect user to SSL enabled page or to force SSL from controller somehow and don't quite see how to do that? Maybe someone can share the knowledge?

Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Take a look at the PHP header manpage, specifically this user contribution regarding https handling and redirection.

link|improve this answer
feedback

It's easy to do at the web server level.

In Apache, you'd do it like this:

RewriteEngine On
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.