gpt4 book ai didi

apache - 从 SSL 中排除特定目录

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

我在 htaccess 中重写了以下 URL,首先将 URLS 重定向到 https,然后再重定向到 WWW(如果尚未重定向)。使用以下代码:

RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^index.php/fsukblog/(.*)$ https://www.thisdomain.com/index.php/blog/$1 [L,R=301]

我想做的是从 SSL 中排除 index.php/acars,这样它就可以通过 http 作为第 3 方软件连接到 acars 中的脚本并且不会通过 SSL 工作。

最佳答案

将 http 重定向到 https://www ,并从 https 重定向中排除/index.php/acars,您可以使用

RewriteEngine on
RewriteCond %{HTTPS} OFF [NC]
RewriteCond www.%{HTTP_HOST} ^(?:www\.)?(www\..+)$ [NC]
RewriteRule !^index\.php/acars https://%1%{REQUEST_URI} [NE,L,R]

关于apache - 从 SSL 中排除特定目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36776267/

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