SSL via different domain & path with NGINX/PHP-FPM/WP
SSL via different domain & path with NGINX/PHP-FPM/WP
SSL via different domain & path with NGINX/PHP-FPM/WP
Random occurences of 502 Bad Gateway using WordPress and Nginx
Correct regex for Nginx FastCGI cache?
WordPress file not found and 403 forbidden
WordPress Nginx Won’t 404
Everytime I’ve seen the thing you’re describing it was due to the browser having the redirect cached. I can’t see any reason that different browsers would behave differently in this case. You may want to try a browser/machine you haven’t used before to access this site as this will show you definitely what’s happening. You … Read more
Nginx tries the wrong file when http_cookie matches logged_in
ERROR: No such service: nginx when building wordpress with docker [closed]
I notice a couple of things right off the bat. First, the try_files parameter in your root location block should be: try_files $uri $uri/ /index.php?$args; Also, I have this block in my own conf file (using Nginx and Redirection together just fine) but you seem to be missing it: location @wp { rewrite ^/files(.*) /wp-includes/ms-files.php?file=$1 … Read more
The issue was solved by commenting out this line fastcgi_split_path_info ^(/blog)(/.*)$; It solved the issue, with apparently no side effects. I got the answer on WordPress.org forums which was originally posted on nginx forums Cheers.