rewrite wrong (sub)domains, unify indentation

This commit is contained in:
2019-10-27 19:36:50 +01:00
parent 0a5b33e141
commit d5f3c1c3bb

View File

@@ -1,6 +1,14 @@
RewriteEngine On
RewriteBase /
# Redirect www, other domains, non-HTTPS
RewriteCond %{HTTP_HOST} ^www\.mehl\.mx$ [NC]
RewriteRule ^(.*)$ https://mehl.mx/$1 [R=301,L]
RewriteCond %{HTTP_HOST} !^mehl\.mx$ [NC]
RewriteRule ^(.*)$ https://mehl.mx/ [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule ^(.*)$ https://mehl.mx/$1 [R=301,L]
# Redirect old links
RewriteRule ^(en|de)/(.*)$ /$2 [R=301,L]
RewriteRule ^(en|de)/?$ / [R=301,L]