FIX for FAQ / app.php 404 error with NGINX and PHPBB3

All sorts of weird and wonderful stuff lives here
Post Reply
User avatar
Valknor
Site Admin
Posts: 75
Joined: Fri Jun 25, 2021 9:35 am
Location: Occupied territory formerly known as the U.S.A.

FIX for FAQ / app.php 404 error with NGINX and PHPBB3

Post by Valknor »

I've probably put a few hours into figuring this out.

In the nginx config file, one should have this inside the server brackets:

Code: Select all

location /app.php {
        try_files $uri $uri/ /app.php?$query_string;
}
Hopefully this will be of use to someone who's been troubleshooting why the FAQ page wouldn't load.

Also, here's the page I found it on: https://www.phpbb.com/community/viewtopic.php?t=2294581
To learn who rules over you, simply find out who you are not allowed to criticize.
Post Reply