-
Notifications
You must be signed in to change notification settings - Fork 5
/
.htaccess
22 lines (16 loc) · 885 Bytes
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ErrorDocument 404 https://feriirawan-api.herokuapp.com/error/404/
RewriteEngine On
# Error
# ========================================
RewriteRule ^error/404/$ /route/errors/404.php [L]
# BMKG
# ========================================
RewriteRule ^list/bmkg$ /list/bmkg/index.php [L]
# List Lambang Provinsi Seluruh Indonesia
# ========================================
# Include data lambang provinsi dan kabupaten
RewriteRule ^list/symbols/include/province$ /list/lambang-daerah-indonesia/include/province.php [L]
RewriteRule ^list/symbols/include/regency$ /list/lambang-daerah-indonesia/include/regency.php [L]
# Endpoint Provinsi & Kabupaten
RewriteRule ^list/symbols/([^/]*)/([^/]*)$ /list/lambang-daerah-indonesia/index.php?data=$1&size=$2 [L]
RewriteRule ^list/symbols/([^/]*)/([^/]*)/([^/]*)$ /list/lambang-daerah-indonesia/include/symbols.php?data=$1&index=$2&size=$3 [L]