Skip to content

Instantly share code, notes, and snippets.

@bystrano
Created February 5, 2016 14:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bystrano/126326f74a913e2a60c2 to your computer and use it in GitHub Desktop.
Save bystrano/126326f74a913e2a60c2 to your computer and use it in GitHub Desktop.
Un florilège de trucs qui marchent pour le fichier htaccess
# Placé dans un dossier, ce htaccess redirige toutes les requêtes vers ailleurs
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ http://planf.be/$1 [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment