将WordPress站点从HTTP移动到HTTPS Err_Too_My_ReDirects

时间:2019-06-11 作者:Valentin

我想沿着我们的轨迹移动我的网站。fr从http到https,但我有消息ERR\\u TOO\\u MANY\\u重定向

wp-config.php :

define(\'WP_HOME\',\'https://www.followourtrack.fr/\');
define(\'WP_SITEURL\',\'https://www.followourtrack.fr/\');

.htaccess file :

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

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
我需要帮忙

谢谢:)

3 个回复
SO网友:ariyolo

首先,您必须在“设置”>“常规”下更新网站地址。确保地址为https://www.followourtrack.fr/. 之后更新您的。htaccess如下所示。

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
那个。htaccess可以在我的服务器中使用fine。

SO网友:NJMUK

尝试从wp config定义中删除尾部斜杠,以便它们读取:

define(\'WP_HOME\',\'https://www.followourtrack.fr\');
define(\'WP_SITEURL\',\'https://www.followourtrack.fr\');
如果失败,请尝试从这些条目中删除www:

define(\'WP_HOME\',\'https://followourtrack.fr\');
define(\'WP_SITEURL\',\'https://followourtrack.fr\');

SO网友:brothman01

直接编辑mysql数据库并更改sitenameblogurl (两者都在wp\\U选项表中)并将其更改为\'https://www.followourtrack.fr\'