Hi everyone.
It may sound stupid but I am wondering how to configure a limonade app with nginx, to enable pretty url.
Official github provides a .htaccess file for Apache. But I can't find the one for nginx.
I tried :
location / {
try_files $uri $uir/ index.php;
}
part of index.php:
dispatch('/about/',about)
function about(){
echo 'hello about!';
}
Thx.