使用.htaccess强制HTTPS请求

时间:2010-12-09 21:56:06

标签: http .htaccess https redirect

我有一个包含图片的文件夹,只能使用HTTPS访问。如何将所有请求从HTTP重定向到HTTPS?

2 个答案:

答案 0 :(得分:4)

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

这应该这样做。

答案 1 :(得分:1)

RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]

下次想要了解如何重定向某些内容时搜索关键字:mod_rewrite