-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.htaccess
More file actions
27 lines (21 loc) · 1011 Bytes
/
Copy path.htaccess
File metadata and controls
27 lines (21 loc) · 1011 Bytes
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
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^masuk$ views/auth/index.php?page=masuk [L]
RewriteRule ^cek-nik$ function/Check.php [L]
RewriteRule ^proses-masuk$ function/Login.php [L]
RewriteRule ^daftar$ views/auth/index.php?page=daftar [L]
RewriteRule ^proses-daftar$ function/Register.php [L]
RewriteRule ^home$ main.php?page=home [L]
RewriteRule ^menu$ menu.php [L]
RewriteRule ^catatan-perjalanan$ main.php?page=catatan-perjalanan [L]
RewriteRule ^tambah-catatan$ main.php?page=tambah-catatan [L]
RewriteRule ^print$ views/print.php [L]
RewriteRule ^proses-tambah-catatan$ function/Insert.php [L]
RewriteRule ^proses-edit-catatan$ function/Update.php [L]
RewriteRule ^hapus-catatan/(.*)$ function/Delete.php?id=$1 [L]
RewriteRule ^data-home$ views/data/data_home.php [L]
RewriteRule ^data-travel$ views/data/data_travel.php [L]
RewriteRule ^data-visited$ views/data/data_visited.php [L]
RewriteRule ^form-update$ views/data/form_update.php [L]
RewriteRule ^keluar$ logout.php [L]
</IfModule>