【发布时间】:2012-06-17 09:29:49
【问题描述】:
嗨,我是 mod rewrite htaccess 的新手,谁能帮我将每个 http:// 请求重定向到 https:// 提前谢谢。
【问题讨论】:
标签: apache .htaccess mod-rewrite
嗨,我是 mod rewrite htaccess 的新手,谁能帮我将每个 http:// 请求重定向到 https:// 提前谢谢。
【问题讨论】:
标签: apache .htaccess mod-rewrite
简单地说:
RewriteEngine On
# Rewrite all non-HTTPS requests to HTTPS.
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
【讨论】: