I got this error when I deploy the Laravel project to AWS
404 Not Found nginx/1.18.0
I follow this question and create this path in main dir of the project but still the error there!
.platform/nginx/conf.d/elasticbeanstalk/laravel.conf
inside laravel.conf:
location / {
  try_files $uri $uri/ /index.php?$query_string;
  gzip_static on;
}
 
    