标签: apache .htaccess http https
我想允许http请求到特定页面。但目前所有请求都重定向到HTTPS
这是Htaccess重定向代码
RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*) RewriteRule ^.*$ https://%1/$1 [R=301,L] RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]