42 lines
1.6 KiB
ApacheConf
42 lines
1.6 KiB
ApacheConf
RewriteEngine On
|
|
RewriteBase /
|
|
|
|
# ====================================
|
|
# CI4 ROUTES PRIORITAIRES
|
|
# ====================================
|
|
|
|
RewriteRule ^test/?$ v3/index.php/test [E=IS_CI4:1,L]
|
|
RewriteRule ^admin-dashboard/?$ v3/index.php/admin-dashboard [E=IS_CI4:1,L]
|
|
RewriteRule ^resultats-nouveaux/?$ v3/index.php/resultats-nouveaux [E=IS_CI4:1,L]
|
|
|
|
# ====================================
|
|
# STOP SI CI4
|
|
# ====================================
|
|
|
|
RewriteCond %{ENV:IS_CI4} =1
|
|
RewriteRule ^ - [L]
|
|
|
|
# ====================================
|
|
# LEGACY ROUTES
|
|
# ====================================
|
|
|
|
RewriteRule ^kc/([\w\-]+)/([\w\-]+)/?$ ./kc.php?param1=$1¶m2=$2 [NC,QSA]
|
|
|
|
RewriteRule ^panier/([\w\-]+)/([\w\-]+)/?$ ./panier.php?lang=fr&step=$1&code=$2 [NC,QSA]
|
|
RewriteRule ^cart/([\w\-]+)/([\w\-]+)/?$ ./panier.php?lang=en&step=$1&code=$2 [NC,QSA]
|
|
|
|
RewriteRule ^compte/?([\w\-]+)?/?$ ./compte.php?lang=fr&code=$1 [NC,QSA]
|
|
RewriteRule ^account/?([\w\-]+)?/?$ ./compte.php?lang=en&code=$1 [NC,QSA]
|
|
|
|
RewriteRule ^reserver/([\w\-]+)/(\d+)/?$ ./reserver.php?lang=fr&code=$1&id=$2 [NC,QSA]
|
|
RewriteRule ^book/([\w\-]+)/(\d+)/?$ ./reserver.php?lang=en&code=$1&id=$2 [NC,QSA]
|
|
|
|
RewriteRule ^don/([\w\-]+)/([\w\-]+)/?/?([\w\-]+)?/?$ ./dons.php?lang=fr&code=$1&pec_id=$2&par_id=$3 [NC,QSA]
|
|
RewriteRule ^donate/([\w\-]+)/([\w\-]+)/?/?([\w\-]+)?/?$ ./dons.php?lang=en&code=$1&pec_id=$2&par_id=$3 [NC,QSA]
|
|
|
|
RewriteRule ^page/([\w\-]+)/?(fr|en)?/?$ ./index.php?code=$1&lang=$2 [NC,QSA]
|
|
|
|
RewriteRule ^([\w\-]+)/?(fr|en)?/?([\w\-]+)?/?$ ./evenements.php?code=$1&lang=$2&tab=$3 [NC,QSA]
|
|
|
|
RewriteCond %{REQUEST_URI} !^/(rapports_js|superadm/.*)$
|