The simple MVC PHP Framework.
- Sander Tuinstra - Developer - SanderT2001
- PHP 7.3.11
location /
{
# If the request was made to a JS/CSS File, don't rewrite.
if ($request_uri ~* \.(?:css|js|map|jpe?g|png)$) {
break;
}
rewrite ^/(.*) /app/public/index.php last;
}
RewriteRule ^(.*)$ /index.php?url=$1 [L,QSA]