在某些页面上将 http 直接转换为 https?

发布于 2024-08-11 16:47:07 字数 291 浏览 3 评论 0原文

您好,我已将以下代码添加到 .ht 访问中,但如何添加另一个页面?例如login.php

,如果用户输入www。他们得到“不受信任的连接”,因为 SSL 仅在没有 www 的情况下才有效。我该如何解决这个问题?

谢谢

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} /login.html
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

Hi I have added the below code to .ht access but how can I add another page to this? such as login.php

also if the user types in www. they get a "untrusted connection" as the SSL is only valid without the www. how could I fix this?

Thanks

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} /login.html
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌酱 2024-08-18 16:47:07

您的第一个问题并没有真正提供编写重写规则所需的信息。您希望根据什么标准将它们重定向到 login.php?

至于 SSL 问题;

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

RewriteCond %{HTTPS} != on
RewriteRule ^(.*)$ https://$1 [L]

Your first question doesn't really give the required information to write the rewrite rule. Upon what criteria do you want to redirect them to login.php?

As far as the SSL issue;

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

RewriteCond %{HTTPS} != on
RewriteRule ^(.*)$ https://$1 [L]
灵芸 2024-08-18 16:47:07

这种方式对于我的个人博客页面非常有用,

我将此代码添加到 .htaccess


重写引擎开启
重写条件%{SERVER_PORT} 443
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

祝你好运,谢谢,

Belajar 网络营销

This way is very useful for my personal blog page

i'm add this code to .htaccess


RewriteEngine On
RewriteCond %{SERVER_PORT} 443
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Good Luck and Thanks,

Belajar Internet Marketing

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文