Created
February 5, 2016 14:16
-
-
Save bystrano/126326f74a913e2a60c2 to your computer and use it in GitHub Desktop.
Un florilège de trucs qui marchent pour le fichier htaccess
This file contains 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
# 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