First PUsh

This commit is contained in:
2018-11-26 14:38:47 +09:00
commit d9e043c468
33 changed files with 8648 additions and 0 deletions

21
.htaccess Normal file
View File

@ -0,0 +1,21 @@
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{ENV:REDIRECT_END} ^1$
RewriteRule ^ - [L]
# Redirection non-www vers www
# RewriteCond %{HTTP_HOST} ^eldotravo.fr$
# RewriteRule ^(.*)$ http://www.eldotravo.fr/$1 [R=301,L,E=END:1]
# Redirection des fichiers static pour contact.sanchez-mathieu.dev
RewriteCond %{HTTP_HOST} ^contact.sanchez-mathieu.dev$
RewriteCond %{DOCUMENT_ROOT}/static%{REQUEST_URI} -f
RewriteRule ^(.*)$ static/$1 [L,E=END:1]
# RewriteRule ^haute-garonne/toulouse/installation-entretien-climatisation /haute-garonne/toulouse/climatisation.php [L]
# Redirection de toutes les requêtes vers Index.php
RewriteRule ^ index.php [L,E=END:1]