I think I finally learned how to get WordPress running in NGINX with multiple server blocks. Phew!
Woo! Finally go #Wordpress to work on #NGINX by adding the below to the server block config! server {
[...]
if (!-e $request_filename) {
rewrite ^.*$ /index.php last;
}
[...]
}
Nope! Still having 404 errors for anything but the home page. :-(