Moving wordpress site from HTTP to HTTPS ERR_TOO_MANY_REDIRECTS

First you must Update the Site Address under Settings > General. Make sure the address is https://www.followourtrack.fr/. After that update your .htaccess like below. <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] </IfModule> That .htaccess can work with fine in my server.

Windows-hosted new site shows no preview: “Future home of something quite cool.” message is displayed

Probably the root directory of your web hosting is not where your WordPress blog is, so you’re seeing the default file from your web host. You’ll probably find that content in an index.php or index.html in the root of your web hosting. You may have installed your WordPress in a directory inside the root instead … Read more

Make WordPress site secure through HTTPS and SSL

If the meta tag is generated by your theme, you can rewrite the URL to https:// if the whole site is forced to use SSL, or better yet, use is_ssl() to check if the page is using https:// and write the URL on the fly. You may have problems with plugins that don’t take SSL … Read more

Issues with forcing HTTPS

As you have, use Firebug with Firefox, or use the developer tools in Chrome or Safari or IE to see what’s loading on your site, the errors and work with the HTML. The main non-https errors I see are for fonts from Google and gstatic. So call your fonts in the @import style sheet or … Read more

Can’t access Admin Panel

You cannot revert this. You will need to export your database via PhpMyAdmin and find all of the “HTTPS” instances and replace them with “HTTP”. I would suggest using something like Dreamweaver or Notepad++ to ‘find and replace all’. After you have done that, import your database again.