11 lines
382 B
ApacheConf
11 lines
382 B
ApacheConf
RewriteEngine on
|
|
RewriteCond %{HTTP:X-Forwarded-Proto} !https
|
|
RewriteCond %{HTTP_USER_AGENT} !(BlackBerry)
|
|
RewriteCond %{HTTP_USER_AGENT} !(Windows\sNT\s5\.[12])
|
|
RewriteCond %{HTTP_HOST} ^(www\.)?endeavouros.cz
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]
|
|
|
|
RewriteBase /
|
|
RewriteCond %{REQUEST_URI} ^(/www/|/www)
|
|
RewriteRule ^(www/)(.*)$ https://%{HTTP_HOST}/$2 [R=301,L]
|