Also remove the www from the host name

bzr-revno: 59
This commit is contained in:
Raoul Snyman 2017-02-20 14:51:27 -07:00
parent c2c04f2595
commit a63d51075e
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,7 @@
RewriteEngine on
# Remove www from URL
RewriteCond %{HTTP_HOST} ^www.openlp.org$ [NC]
RewriteRule ^(.*)$ https://openlp.org/$1 [R=301,L]
# Redirect HTTP to HTTPS
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]