Laravel routes not found on nginx
问题 when I try to access my test app, just the index route works: malte.italoborg.es If I try to access another route, like: malte.italoborg.es/admin I got 404 error. My nginx app file: server { listen 80; server_name malte.italoborg.es; root /home/italo/www/malte.italoborg.es/public; charset utf-8; location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } access_log off; error_log /home/log/nginx/malte.italoborg.es-error.log