[SOLVED] Nginx 403 Directory Listing Forbidden

DirectoryIndex is disabled - that good :slight_smile: But it could seem like you aren’t pointing to the Web folder, where the index.php is located.

And remember the to have rewrite rules like this (depending on how you setup nginx in your case)

location / {
  try_files $uri $uri/ /index.php$is_args$args;
}
1 Like