-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
executable file
·24 lines (22 loc) · 1.18 KB
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# On suit les liens symboliques
Options +FollowSymlinks
# Activation du mod rewrite d'Apache
RewriteEngine On
# Réécriture de index.html vers index.php
#-@ IUM MODULE -@
RewriteRule ^phoneadvisor$ /MODULES/phoneadvisor/index.php?run=start [L]
#-@ END IUM MODULE -@
RewriteRule ^(([a-z]||[A-Z])+)$ Wui.php?run=$1&argument=void [L]
RewriteRule ^spec/([0-9]+)$ Wui.php?run=getSpec&argument=$1 [L]
RewriteRule ^compared/([0-9]+)/([0-9]+)$ Wui.php?run=compared&sm1=$1&sm2=$2 [L]
RewriteRule ^legalNotice$ Wui.php?run=getLegalNotice&argument=void [L]
RewriteRule ^manufacturer/([a-z]*)$ Wui.php?run=phoneList&argument=$1 [L]
RewriteRule ^Service/([A-z]*)$ Wui.php?run=Service&argument=$1 [L]
RewriteRule ^([A-z]*)$ Wui.php?run=$1 [L]
RewriteRule ^admin-login$ Wui.php?run=getLoginView&argument=void [L]
RewriteRule ^prepare-comparison$ Wui.php?run=prepareComparison&argument=void [L]
ErrorDocument 404 /COMPARED/Wui.php?run=Service&argument=Error&type=404
ErrorDocument 500 /COMPARED/Wui.php?run=Service&argument=Error&type=500
ErrorDocument 503 /COMPARED/Wui.php?run=Service&argument=Error&type=503
ErrorDocument 401 /COMPARED/Wui.php?run=Service&argument=Error&type=401
Options -Indexes