我正在尝试重定向,
https://www
到https,但没有成功。
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^https://www.site.domain$
RewriteRule (.*)$ https://site.domain/ [R=301,L]
这是我尝试过的。
答案 0 :(得分:0)
%{HTTP_HOST}
仅匹配没有协议http://
或https://
的主机名。
在DocumentRoot/.htaccess
:
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(ivon\.bg)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [R=301,L]