标签: .htaccess
使用www将我的页面重定向到https
RewriteEngine on RewriteCond %{HTTP_HOST} ^example\.com$ [NC,OR] RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^(?:www\.)?(example\.com)$ [NC] RewriteRule ^.*$ https://www.example.com%{REQUEST_URI} [NE,L,R=301]
错误:重定向过多