Wordpress网站 - 重定向太多

时间:2017-05-30 14:31:22

标签: wordpress .htaccess redirect

我正在运行一个.ca网站,我的网站有太多的重定向。

它来自

http://mysite.ca to
https://wwww.mysite.ca to
https://wwww.mysite.ca/

这是我的.htaccess文件:

RewriteEngine On 
RewriteCond %{HTTP_HOST} ^MYSITE\.ca [NC]
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.MYSITE.ca/$1 [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>

# END WordPress

1 个答案:

答案 0 :(得分:0)

如果您使用的是 ssl证书,请将以下代码添加到您的 wp-config.php 文件中。

if (strpos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false)
       $_SERVER['HTTPS']='on';

请参见this post