-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.htaccess
executable file
·30 lines (30 loc) · 1.23 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
25
26
27
28
29
30
#================================================
ErrorDocument 404 /php/error.php
DirectoryIndex index.php
#================================================
<IfModule mod_rewrite.c>
RewriteEngine on
#================================================
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{ENV:GPROJECT_ENV} TEST
RewriteRule ^home/(.*)$ /home/?pageid=$1 [L,QSA]
#================================================
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^readypad/(.*)$ webpad/code/?pageid=$1 [L,QSA]
#================================================
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^readypad$ webpad/code/?pageid=home [L,QSA]
#================================================
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/Tuto/(.*)$ $1/?Tuto=$2 [L,QSA]
#================================================
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^Connexion/(.*)$ Connexion/?action=$1 [L,QSA]
#================================================
</IfModule>
#================================================