Created
May 13, 2019 16:06
-
-
Save uovidiu/ffe9d60414d99c0893b7c3192fde81e5 to your computer and use it in GitHub Desktop.
Canonical https/www
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Canonical https/www | |
| <IfModule mod_rewrite.c> | |
| RewriteCond %{HTTPS} off [OR] | |
| RewriteCond %{HTTP_HOST} !^www\. [NC] | |
| RewriteCond %{HTTP_HOST} ^(.*)$ [NC] | |
| RewriteRule (.*) https://www.%1/$1 [R=301,L] | |
| </IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment