我经营在 VestaCP 和 cPanel 下运行的网站。在开发网站时,我设置了 htpassword 保护,密码语法如下:
AuthType Basic
AuthUserFile /home/the-account/htpasswd
AuthName "Restricted"
Require valid-user
对于重定向以使所有内容都重定向到 https://www.the-website ...我使用:
RewriteEngine on
RewriteBase /
Options +FollowSymlinks
# Redirect http to https
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.website.ext$1 [R,L]
如果未启用密码保护,重定向行将完美运行。所有的:
website.ext
www.website.ext
http://website.ext
重定向到:
https://www.website.ext (the goal)
然而,VestaCP 与 cPanel 的行为不同,并且在 cPanel 中严重中断。在vesta 中,当您访问website.ext 之类的url 时,它会显示apache 登录屏幕,首先您必须以http:// 登录,然后第二次以https://www 登录。但它有效,你最终达到了目标。
使用 cPanel 它会中断。如果您尝试使用任何不完全限定的 URL 登录,您最终会出现超时,找不到页面,例如:
www.website.ext401.shtml.
如上所示,ext 和 401.html 一起运行。主要页面错误是:无法访问该站点。如果您尝试以https://www.website.ext身份登录,它可以完美运行。
修复 cPanel 问题很重要,VestaCP 会很好。