Site resolves to www in Firefox and without in Chrome

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 + Redirection Plugin breaks Permalinks [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

nginx wordpress subdirectory Invalid post type

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.

tech