我想沿着我们的轨迹移动我的网站。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>
我需要帮忙
谢谢:)
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\');