Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created May 28, 2015 08:16
Show Gist options
  • Save thierrypigot/dab8da234716e16b5daf to your computer and use it in GitHub Desktop.
Save thierrypigot/dab8da234716e16b5daf to your computer and use it in GitHub Desktop.
.htaccess : Redirection d’une url sans www vers une url avec www
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