witheout
Darf ich da "e" rausnehmen oder muss er da sein?
# Enable Server-Side-Includes
Options +Includes
AddType text/x-server-parsed-html .shtm .shtml .htm .html
# Redirect all unsafe requests
# and requests witheout the 'www' to https://www.mywebsite.de/
RewriteEngine On
RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} !^www.mywebsite.de$
RewriteRule (.*)$ https://www.mywebsite.de/$1 [R=301,L]
Vielen lieben Dank für alles.