我正在尝试将http从http重定向到我的网站https。我使用的代码仅适用于主页并正确重定向。例如,它正确地从http重定向到https
然而,我在wordpress网站上创建的页面可以访问http和https,例如,可以在以下两个URL访问页面
http://www.example.com/any-page-url和https://www.example/any-page-url
但是我希望所有的http页面都重定向到相应的https页面。我使用的htaccess文件是
# 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>
# END WordPress
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
答案 0 :(得分:0)
您是否尝试将代码放在htaccess文件的顶部。
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*)https:// % {HTTP_HOST}%{REQUEST_URI}
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
如果这不起作用,请尝试使用以下代码代替您的https重定向代码
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]