Technique

HTTPS enabled

Checks if the website is accessible via HTTPS.

Pourquoi est-ce important ?

HTTPS is a confirmed ranking factor at Google. Browsers show a "Not secure" warning for HTTP sites, damaging trust. HTTPS is also required for modern web technologies like HTTP/2.

Comment le corriger ?

Install an SSL/TLS certificate via Let's Encrypt (free) or a paid certificate. Configure the server to redirect all HTTP requests to HTTPS. Update internal links and images to HTTPS.

Ce check note de 0 à 100. Sous 50 c’est un échec, 50 à 89 un avertissement, 90 ou plus c’est bon. Après chaque crawl vous voyez la note par page dans le rapport, avec une courte explication.

Questions fréquentes

Checks if the website is accessible via HTTPS.

HTTPS is a confirmed ranking factor at Google. Browsers show a "Not secure" warning for HTTP sites, damaging trust. HTTPS is also required for modern web technologies like HTTP/2.

Install an SSL/TLS certificate via Let's Encrypt (free) or a paid certificate. Configure the server to redirect all HTTP requests to HTTPS. Update internal links and images to HTTPS.

Exemple

Copiez le code ci-dessous et adaptez le nom de domaine, la marque et le contenu à votre situation.

# Nginx: force HTTPS
server {
    listen 80;
    server_name yourdomain.com www.yourdomain.com;
    return 301 https://www.yourdomain.com$request_uri;
}

# Apache .htaccess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

# Let's Encrypt (free SSL)
# certbot --nginx -d yourdomain.com -d www.yourdomain.com
Essai gratuit