WordPress 3.0 & nginx - permalink, 404 problem

前端 未结 8 2216
清歌不尽
清歌不尽 2021-02-08 16:26

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

8条回答
  •  南旧
    南旧 (楼主)
    2021-02-08 16:57

    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.

提交回复
热议问题