-1
我想從http TP HTTPS我所有的網站重定向除了在某些頁面:要排除的頁面:.htaccess:除了在某些頁面上,從http重定向到https?
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
前
/home/user中/信息/ MYDATA/AJAX。 PHP
我想從http TP HTTPS我所有的網站重定向除了在某些頁面:要排除的頁面:.htaccess:除了在某些頁面上,從http重定向到https?
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
前
/home/user中/信息/ MYDATA/AJAX。 PHP
添加另一個RewriteCond
指令:
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^/(home|user|info|myta|ajax\.php)
RewriteRule^https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
或者一個規則:
RewriteCond %{HTTPS} off
RewriteRule ^/?(?!home|user|info|myta|ajax\.php) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]