任何人都可以帮我停止https重定向特定网址,htacces被多个停放域使用,所以我只使用https作为我的主域名。(“www.domain.com”)请找到我的当前htaccess的
#ssl
RewriteCond %{HTTP_HOST} ^www\.domain\.com [NC]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301]
我希望以下网址不会重定向到https
https://www.domain.com/setup/abc/{ID}
https://www.domain.com/setup/abc
等。
基本上我希望网址不会重定向,包括/setup/
。
答案 0 :(得分:1)
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.domain\.com [NC]
RewriteCond %{HTTPS} off
RewriteRule ^((?!^setup/).*)$ https://www.domain.com/$1 [L,R=301]
这应该可以解决问题。