rewrite www-subdomain to non-www

lektura
max.mehl 2021-04-30 13:14:13 +02:00
parent 3453bc6bb4
commit 673affb70c
No known key found for this signature in database
GPG Key ID: 2704E4AB371E2E92
1 changed files with 21 additions and 6 deletions

View File

@ -1,13 +1,28 @@
# Redirect www subdomain to non-www
<VirtualHost *:8080>
RewriteEngine On
# Get protocol
RewriteCond %{HTTPS} =on
RewriteRule ^(.*)$ - [env=proto:https]
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ - [env=proto:http]
# Rewrite to proto://www-less-host/location
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ %{ENV:proto}://%1$1 [R=301,L]
</VirtualHost>
# The normal virtual host for this specific site
<VirtualHost *:8080>
ServerName publiccode.eu
ServerAdmin contact@fsfe.org
DocumentRoot /app
<Directory /app/>
Options FollowSymLinks Includes
AllowOverride All
Require all granted
</Directory>
<Directory /app/>
Options FollowSymLinks Includes
AllowOverride All
Require all granted
</Directory>
</VirtualHost>