0

可能重复:
使用 .htaccess 和 mod_rewrite 强制 SSL/https

嗨,我是 mod rewrite htaccess 的新手,谁能帮我将每个 http:// 请求重定向到 https:// 提前谢谢。

4

1 回答 1

4

简单的说:

RewriteEngine On
# Rewrite all non-HTTPS requests to HTTPS.
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
于 2012-06-14T10:55:27.330 回答