vote up 0 vote down star
1

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!

flag

2 Answers

vote up 1 vote down check

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

link|flag
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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