Skip to content

Instantly share code, notes, and snippets.

@jacmaes
Last active September 12, 2019 15:04
Show Gist options
  • Save jacmaes/44fdf292c06333e55cb58fc9cda9ee80 to your computer and use it in GitHub Desktop.
Save jacmaes/44fdf292c06333e55cb58fc9cda9ee80 to your computer and use it in GitHub Desktop.
Add www and https #htaccess
RewriteEngine on
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} ^(.*)$ [NC]
RewriteRule (.*) https://www.example.com/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment