I\'ve installed nginx, FastCGI and PHP on my server. WordPress 3.0 installed after a bit of a monster battle, but it\'s installed and working well.
However, when I chang
Adding this block to your nginx.conf should solve the issue:
if (!-e $request_filename) { rewrite ^/wordpress_dir/(.+)$ /wordpress_dir/index.php?q=$1 last; }
Hope this helps.
Good luck.