4
Warum funktionieren .htaccess-Weiterleitungen in http, aber nicht mit https?
Ich habe eine einfache .htaccess-Datei, die auf der http-Version der Website hervorragend funktioniert, aber nicht, wenn ich zu https gehe. Warum? RewriteEngine on #This is so if the file exists then use the file RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^ %{REQUEST_FILENAME} [L] #These conditions check if a file or folder exists …