http到https页面不起作用

时间:2018-01-19 22:51:39

标签: apache .htaccess

我已在我的htaccess文件中输入代码,以便从非www重定向到www,从http重定向到https。它适用于主页,但不适用于网站上的某些其他页面。例如,它适用于www.example.com但不适用于www.example.com/contactus。代码是:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

0 个答案:

没有答案