本文介绍了强制所有用户使用.htaccess使用SSL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚在自己的站点上安装了SSL证书,但是现在当我试图强制所有用户通过安全SSL(HTTPS)而不是HTTP时遇到一个问题.我发现使用它的方法是在.htaccess中使用以下代码

I just installed a SSL certificate on my site, but now I'm facing a problem when I try to force all users to go through secure SSL (HTTPS) instead of HTTP. I found that the way to to it is using the code below on .htaccess

#Force SSL on entire site
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:HTTPS} !on [NC]
RewriteRule ^(.*)$ https://example.com/$1 [R,L]

到目前为止,它不起作用,我收到了重定向循环错误.

So far, it's not working, I get a redirect loop error.

它重定向到SSL URL,但不起作用.没有.htaccess规则,当我手动键入 https://时,它可以工作example.com

It's redirecting to the SSL URL, but not working.. without the .htaccess rule it works when i type manually https://example.com

推荐答案

尝试一下:

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

应该可以正常工作...

Should work fine...

这篇关于强制所有用户使用.htaccess使用SSL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 17:32