如果博客不在根目录中,Nginx 和 Wordpress 永久链接将会失效

如果博客不在根目录中,Nginx 和 Wordpress 永久链接将会失效

我已经nginx在服务器上安装了 Wordpress。但是,我的博客不在域根目录中。(例如 example.com/blog,内容在 中/var/www/example.com/blog

我在 nginx 中使用下面的设置,而我的 Wordpress 安装在 Apache 中使用 url 重写规则。(例如 永久链接example.com/blog/2012/hello-world

然而,有趣的是,所有这些 URL 重写规则都进入了index.phpin /(而不是 in blog/)。我想修复它,但我不知道该怎么做。另一件有趣的事情是,example.com/blog(主页)工作正常。

例如,我猜想由于example.com/blog/2012/hello-world不是真实文件,所以try_files正在执行example.com/index.php。(url 保持不变,但 index.php 已执行)。任何帮助都非常感谢!

server {
    listen   80;

    root /var/www/example.com;
    index index.php;

    server_name 192.34.59.214;

    location / {
            try_files $uri $uri/ /index.php?q=$uri&$args;
    }

    error_page 404 /404.html;

    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
          root /usr/share/nginx/www;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9$
    location ~ \.php$ {
            #fastcgi_pass 127.0.0.1:9000;
            # With php5-fpm:
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }
}

答案1

您需要locationWordPress 的另一个部分。

location /blog/ {
    try_files $uri $uri/ /blog/index.php
}

相关内容