Mathieu Sanchez
3222d1db84
Rename for case sensitive Optimize search engine Remove useless options htaccess Add Modal Add delete, add contact
22 lines
749 B
ApacheConf
22 lines
749 B
ApacheConf
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.test
|
|
RewriteCond %{HTTP_HOST} ^contact.sanchez-mathieu.test
|
|
RewriteCond %{DOCUMENT_ROOT}/static%{REQUEST_URI} -f
|
|
RewriteRule ^(.*)$ static/$1 [L,E=END:1]
|
|
|
|
# Redirection des fichiers static pour contact.sanchez-mathieu.fr
|
|
RewriteCond %{HTTP_HOST} ^contact.sanchez-mathieu.fr
|
|
RewriteCond %{DOCUMENT_ROOT}/static%{REQUEST_URI} -f
|
|
RewriteRule ^(.*)$ static/$1 [L,E=END:1]
|
|
|
|
# Redirection de toutes les requêtes vers Index.php
|
|
RewriteRule ^ index.php [L,E=END:1] |