Technisch

HTTPS enabled

Checks if the website is accessible via HTTPS.

Warum ist das wichtig?

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.

Wie beheben Sie es?

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.

Dieser Check bewertet von 0 bis 100. Unter 50 ist ein Fail, 50 bis 89 eine Warnung, 90 oder höher ist gut. Nach jedem Crawl sehen Sie die Note pro Seite im Report, mit einer kurzen Erklärung.

Häufige Fragen

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.

Beispiel

Kopieren Sie den Code unten und passen Sie Domain, Markenname und Inhalt an Ihre Situation an.

# 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
Kostenlos starten