Nginx ayarları yaptınız mı?
server {
listen 80;
listen [::]:80;
root /var/www/html/benimprojem/public;
index index.php index.html index.htm index.nginx-debian.html;
server_name benimprojem.com www.benimprojem.com;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
}