gpt4 book ai didi

.htaccess - htaccess 仅对某些页面重定向到 ssl,对其他页面不安全的 www

转载 作者:太空宇宙 更新时间:2023-11-03 13:04:28 25 4
gpt4 key购买 nike

我需要将网站的所有请求重定向到 www,只有某些页面重定向到没有 www 的 https,因为出于某种原因,我们客户购买的 ssl 证书不涵盖 www。环顾四周后,我设法完成了大部分工作。但是,一旦我们访问了一个安全的 url 页面,其他页面将保持在 https 上。这是我目前在 .htaccess 中的内容:

#Redirect to www
RewriteCond %{HTTPS} =off
RewriteCond %{HTTP_HOST} ^[^./]+\.[^./]+$ [NC,OR]
RewriteCond %{HTTP_HOST} ^([^./]+)\.[^./]+\.[^./]+$ [NC]
RewriteCond %1 !=www [NC]
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]


# Force SSL on checkout login account and admin pages
RewriteCond %{HTTPS} =off
RewriteCond %{REQUEST_URI} checkout|login|my-account|administrator|webshop
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L

如果 https 处于打开状态并且不属于列出的 url,我会错过将重定向到 www non secure 的部分。但我对正则表达式和重写规则一点都不熟悉。一些帮助将不胜感激。

最佳答案

尝试改用这段代码:

# Force SSL on checkout login account and admin pages
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} checkout|login|my-account|administrator|webshop
RewriteCond %{HTTP_HOST} ^(www\.)?(.*)$ [NC]
RewriteRule ^(.*)$ https://%2/$1 [R=301,L,QSA]

# Remove SSL on other pages
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !checkout|login|my-account|administrator|webshop
RewriteCond %{HTTP_HOST} ^(www\.)?(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%2/$1 [R=301,L,QSA]

# Force www for non https
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L,QSA]

关于.htaccess - htaccess 仅对某些页面重定向到 ssl,对其他页面不安全的 www,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12260816/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com