1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Options -Indexes
ErrorDocument 404 /erreur404.php
Options +FollowSymLinks
RewriteBase /
RewriteEngine On
# Redirection vers HTTPS
#RewriteCond %{SERVER_PORT} ^80$ [OR]
#RewriteCond %{HTTPS} =off
#RewriteRule ^(.*)$ https://xxx.fr/$1 [R=301,L]
RewriteRule ^mn-([0-9]+)-(.*)$ template/1/page.php?id_menu=$1 [L,QSA]
RewriteRule ^sm-([0-9]+)-(.*)$ template/1/pagesousmenu.php?id_sous_menu=$1 [L,QSA]
RewriteRule ^tp-index.php$ /template/1/index.php [L]
RewriteRule ^tp-galerie.php$ /template/1/galerie.php [L]
RewriteRule ^tp-blog.php$ /template/1/blog.php [L]
RewriteRule ^tp-contact.php$ /template/1/contact.php [L]
RewriteRule ^mbi85gestweb$ /administration/index.php [L]
RewriteRule ^tp2-index.php$ /template/2/index.php [L]
RewriteRule ^billet-([0-9]+)-(.*)$ /template/2/fiche-blog.php?id_actualite=$1 [L,QSA] |
Partager