本文介绍了如何将所有 HTTP 请求重定向到 HTTPS的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试将我网站上的所有不安全的 HTTP 请求(例如 http://www.example.com
)重定向到 HTTPS (https://www.example.com
).如何在 .htaccess 文件中执行此操作?
I'm trying to redirect all insecure HTTP requests on my site (e.g. http://www.example.com
) to HTTPS (https://www.example.com
). How can I do this in .htaccess file?
顺便说一下,我使用的是 PHP.
By the way, I'm using PHP.
推荐答案
更新: 虽然这个答案在几年前就被接受了,请注意它的做法是 现在被 Apache 文档推荐反对.使用 Redirect
代替.请参阅此答案.
Update: Although this answer has been accepted a few years ago, note that its approach is now recommended against by the Apache documentation. Use a Redirect
instead. See this answer.
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
这篇关于如何将所有 HTTP 请求重定向到 HTTPS的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!