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