forked from OpenSID/OpenSID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
htaccess.txt
45 lines (40 loc) · 1.44 KB
/
htaccess.txt
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
#============
# Di server yg ada Apache, gunakan file ini untuk menghapus index.php dari url OpenSID,
# dan untuk mengamankan folder desa.
# Untuk mengaktifkan, ubah nama file ini menjadi .htaccess,
# Sesudah aktif, misalnya, modul Web bisa dipanggil dengan http://localhost/first.
# Untuk menggunakan fitur ini, pastikan konfigurasi Apache di server SID
# mengizinkan penggunaan .htaccess
#============
RewriteEngine on
RewriteBase /
# Apabila menggunakan sub-domain atau sub-folder gunakan bentuk berikut
# RewriteBase /nama-sub-folder/
# Prevent index dirs
RewriteCond $1
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
# General dirs / files
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
# Protect Folder Not Index
Options All -Indexes
# Periksa apakah full-path perlu disesuaikan untuk server anda
# Contoh berikut untuk path seperti /home/opensidm/demo.opensid.my.id/desa/upload
<Directory /home/*/*/desa/upload>
php_flag engine off
<FilesMatch "(?i)\.(php|php3?|phtml|phpjpeg)$">
Order Deny,Allow
Deny from All
</FilesMatch>
</Directory>
# Periksa apakah full-path perlu disesuaikan untuk server anda
# Contoh berikut untuk path seperti /home/opensidm/demo.opensid.my.id/desa-contoh
<Directory /home/*/*/desa-contoh>
php_flag engine off
<FilesMatch "(?i)\.(php|php3?|phtml|phpjpeg)$">
Order Deny,Allow
Deny from All
</FilesMatch>
</Directory>