Created
May 28, 2015 08:16
-
-
Save thierrypigot/dab8da234716e16b5daf to your computer and use it in GitHub Desktop.
.htaccess : Redirection d’une url sans www vers une url avec 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
| Options +Followsymlinks | |
| RewriteEngine On | |
| RewriteCond %{HTTP_HOST} !^www\. | |
| RewriteRule ^(.*)$ http://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