Hallo,
ich habe auf meinem Webserver ein SSL-Zertifikat von startSSL installiert, welches auch einwandfrei funktioniert und angezeigt wird.
Wenn ich jedoch meine Website normal aufrufe über domain.tld dann erscheint jedes mal folgendes:
Bad Request
Your browser sent a request that this server could not understand.
Reason: You're speaking plain HTTP to an SSL-enabled server port.
Instead use the HTTPS scheme to access this URL, please.
Apache/2.4.10 (Debian) Server at domain.tld Port 443
Ich erreiche die Seite also immer nur wenn ich selbst manuell das HTTPS-Protokoll davorsetze.
https://domain.tld ist dann kein Problem...
Auch die Erstellung einer .htaccess mit folgendem Inhalt:
<ifmodule mod_rewrite.c="">
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</ifmodule>
und ein Neustart des Webservers bringt mich nicht weiter.
Jemand eine Idee wie ich erreiche dass praktisch domain.tld automatisch auf das HTTPS-Protokoll weiterleitet?