Apache中除了少数页面外如何强制重写为HTTPS?

发布于 2024-11-03 16:57:55 字数 72 浏览 0 评论 0原文

我需要将 Apache 中的所有页面强制重定向到 HTTPS,除了少数页面之外。如何在 Apache 中针对这种情况编写重写规则?

I need to force redirect all the pages in Apache to HTTPS except for a few pages. How to write rewrite rule in Apache for this condition?

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

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

发布评论

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

评论(2

掌心的温暖 2024-11-10 16:57:55
RewriteEngine On

RewriteCond %{HTTPS} =off
RewriteCond %{REQUEST_URI} !^\/page1\/
RewriteCond %{REQUEST_URI} !^\/page2\/
RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]    

RewriteCond %{HTTPS} =on
RewriteCond %{REQUEST_URI} \/page1\/ [OR]
RewriteCond %{REQUEST_URI} \/page2\/
RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]

第一个规则集将重定向所有未通过 HTTPS 访问的页面,并且这些页面不是 /page1//page2/ 到相同的 URL,但 https:// /。第二个规则集将确保 /page1//page2/ 在通过以下方式访问时重定向回 http:// https://

RewriteEngine On

RewriteCond %{HTTPS} =off
RewriteCond %{REQUEST_URI} !^\/page1\/
RewriteCond %{REQUEST_URI} !^\/page2\/
RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]    

RewriteCond %{HTTPS} =on
RewriteCond %{REQUEST_URI} \/page1\/ [OR]
RewriteCond %{REQUEST_URI} \/page2\/
RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]

The first rule-set will redirect all pages not accessed via HTTPS, and that are not /page1/ or /page2/ to the same URL but https://. The second rule-set will make sure that /page1/ and /page2/ are redirected back to http:// if they are accessed via https://.

别念他 2024-11-10 16:57:55

更简单的解决方案:

RedirectMatch ^((?!\/(page1|page2)).*)$ https://%{HTTP_HOST}$1

这会将除 page1 和 page2 之外的所有内容重定向到当前主机的 https。

A more simple solution:

RedirectMatch ^((?!\/(page1|page2)).*)$ https://%{HTTP_HOST}$1

This will redirect everything except page1 and page2 to https of the current host.

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