¿Por qué importa esto?
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.
¿Cómo se soluciona?
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.
Este check puntúa de 0 a 100. Bajo 50 es un fallo, 50 a 89 un aviso, 90 o más es bueno. Tras cada crawl ve la nota por página en el informe, con una breve explicación.
Preguntas frecuentes
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.
Ejemplo
Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.
# 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