PHP code example of basoro / khanza-lite
1. Go to this page and download the library: Download basoro/khanza-lite library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
basoro / khanza-lite example snippets
bash
location / {
index index.php;
if (!-e $request_filename) {
rewrite / /index.php last;
}
}
location ^~ /systems/data/ {
deny all;
return 403;
}
location /admin {
index index.php;
try_files $uri $uri/ /admin/index.php?$args;
}
bash
location /lite {
index index.php;
if (!-e $request_filename) {
rewrite / /lite/index.php last;
}
}
location ^~ /lite/systems/data/ {
deny all;
return 403;
}
location /lite/admin {
index index.php;
try_files $uri $uri/ /lite/admin/index.php?$args;
}