Skip to content

Instantly share code, notes, and snippets.

@iamchetanp
Created December 16, 2018 21:33
Show Gist options
  • Save iamchetanp/ab7980963e91032f64a0329cbe027b4f to your computer and use it in GitHub Desktop.
Save iamchetanp/ab7980963e91032f64a0329cbe027b4f to your computer and use it in GitHub Desktop.
Redirect non-www URLs to www with https (Apache)
# Redirect non-www URLs to www with https
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment