Skip to content

Instantly share code, notes, and snippets.

@nosmall
Last active August 30, 2018 09:14
Show Gist options
  • Save nosmall/2c7c7a4d7e41ffa08d5c407246506fc2 to your computer and use it in GitHub Desktop.
Save nosmall/2c7c7a4d7e41ffa08d5c407246506fc2 to your computer and use it in GitHub Desktop.
htaccess - Redirect HTTP to HTTPS

Redirect WWW to NON-WWW for HTTP and HTTPS

RewriteEngine On
# WWW to NON-WWW for HTTP and HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

Redirect HTTP to HTTPS

RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]

Redirect with www

RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://www.%1%{REQUEST_URI} [L,NE,R=301]

Source: https://simonecarletti.com/blog/2016/08/redirect-domain-http-https-www-apache/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment