forked from auracms/AuraCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
51 lines (40 loc) · 3.39 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [S=84]
RewriteRule ^index.html$ ./index.php [QSA,L]
RewriteRule ^logout.html$ ./?action=logout [QSA,L]
RewriteRule ^login.html$ ./login.php [QSA,L]
RewriteRule ^article-(.*).html$ ./index.php?mod=content&action=view&seftitle=$1 [QSA,L]
RewriteRule ^pages-(.*).html$ ./index.php?mod=content&action=view&seftitle=$1 [QSA,L]
RewriteRule ^article.html$ ./index.php?mod=content [QSA,L]
RewriteRule ^category-(.*)-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=content&action=category&seftitle=$1&pg=$2&stg=$3&offset=$4 [QSA,L]
RewriteRule ^category-(.*).html$ ./index.php?mod=content&action=category&seftitle=$1 [QSA,L]
RewriteRule ^arsip-(.*)-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=content&action=arsip&seftitle=$1&pg=$2&stg=$3&offset=$4 [QSA,L]
RewriteRule ^arsip-(.*).html ./index.php?mod=content&action=arsip&seftitle=$1 [QSA,L]
RewriteRule ^search-(.*)-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=content&action=search&search=$1&pg=$2&stg=$3&offset=$4 [QSA,L]
RewriteRule ^search.html ./index.php?mod=content&action=search [QSA,L]
RewriteRule ^contact.html$ ./index.php?mod=contact [QSA,L]
RewriteRule ^video-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=video&pg=$1&stg=$2&offset=$3 [QSA,L]
RewriteRule ^video-(.*).html ./index.php?mod=video&action=view&seftitle=$1 [QSA,L]
RewriteRule ^video.html ./index.php?mod=video [QSA,L]
RewriteRule ^guestbook-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=guestbook&pg=$1&stg=$2&offset=$3 [QSA,L]
RewriteRule ^guestbook-add.html ./index.php?mod=guestbook&action=add [QSA,L]
RewriteRule ^guestbook.html ./index.php?mod=guestbook [QSA,L]
RewriteRule ^gallery-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=gallery&pg=$1&stg=$2&offset=$3 [QSA,L]
RewriteRule ^gallery-detail-(.*)-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html ./index.php?mod=gallery&action=detail&seftitle=$1&pg=$2&stg=$3&offset=$4 [QSA,L]
RewriteRule ^gallery-detail-(.*).html ./index.php?mod=gallery&action=detail&seftitle=$1 [QSA,L]
RewriteRule ^gallery.html ./index.php?mod=gallery [QSA,L]
RewriteRule ^polling.html$ ./index.php?mod=polling [QSA,L]
RewriteRule ^album-([0-9]{1,})-(.*).html$ ./index.php?pilih=photo&mod=yes&aksi=photo&kid=$1 [QSA,L]
RewriteRule ^photo-([0-9]{1,})-([0-9]{1,})-(.*).html$ ./index.php?pilih=photo&mod=yes&aksi=detail&id=$1&kid=$2 [QSA,L]
RewriteRule ^weblinks-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=weblinks&pg=$1&stg=$2&offset=$3 [QSA,L]
RewriteRule ^weblinks-(.*)-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=weblinks&action=detail&seftitle=$1&pg=$2&stg=$3&offset=$4 [QSA,L]
RewriteRule ^weblinks-jump-(.*).html ./links_jump.php?seftitle=$1 [QSA,L]
RewriteRule ^weblinks-(.*).html ./index.php?mod=weblinks&action=detail&seftitle=$1 [QSA,L]
RewriteRule ^weblinks.html ./index.php?mod=weblinks [QSA,L]
RewriteRule ^download-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=download&pg=$1&stg=$2&offset=$3 [QSA,L]
RewriteRule ^download-detail-(.*)-([0-9]{1,})-([0-9]{1,})-([0-9]{1,}).html$ ./index.php?mod=download&action=detail&seftitle=$1&pg=$2&stg=$3&offset=$4 [QSA,L]
RewriteRule ^download-detail-(.*).html ./index.php?mod=download&action=detail&seftitle=$1 [QSA,L]
RewriteRule ^download-jump-(.*).html ./dl_jump.php?seftitle=$1 [QSA,L]
RewriteRule ^download.html ./index.php?mod=download [QSA,L]