问题
We have a Symfony 1.4 project and are looking to force https for all pages in a symfony application using only the htaccess file. I know there are ways to do using filters but I want to know if its possible to do without that first?
Here is the .HTACCESS file I currently am using but isn't working as expected...
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
RewriteCond %{REQUEST_FILENAME} !-f
I've also tried without success:
RewriteCond %{SERVER_PORT} !^443$
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
I am sure there is some quirk I am missing in doing this with Symfony as this is an easy task to do straight away. Any ideas gents?
回答1:
Regarding a previous answer, try:
RewriteCond %{SERVER_PORT} !^443$
RewriteRule .? https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
来源:https://stackoverflow.com/questions/10703206/force-https-using-only-htaccess-in-symfony