如何将所有URL版本重定向到.htaccess中的https

时间:2018-10-31 23:51:28

标签: .htaccess mod-rewrite

现在,如果有人登陆http://www,我将获得2次重定向-在这种情况下,重定向链为:

http://wwwhttps://www至https://

只能是:

http://www到https://

我相信问题出在我的.htaccess文件的前3行中,如下所示:

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule .* https://example.com%{REQUEST_URI} [R=301,L]

# Prevent trailing slash on files
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !.+\.(html|php|xml|css|xsl)$
RewriteRule ^(.*)([^/])$ /$1$2/ [L,R=301]

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

0 个答案:

没有答案