Nginx:非根上下文中的Wordpress博客

时间:2017-10-21 18:40:32

标签: java php wordpress nginx

我是一个在java中运行的网站,还有一个wordpress博客(例如www.example.com& blog.example.com)。我想在我的网站下将博客移至/ blog上下文,以便网址看起来像www.example.com/blog。

由于它是一个wordpress博客,我试图在80端口使用Ngix。我已经将Java应用程序移动到8080端口并使用反向代理在根环境中服务器java应用程序。

server {
    listen: 80;
    server_name: www.example.com;

    location / {
        proxy_pass http://internal-example-host:8080/; #resolved to localhost through /etc/hosts
    }

    location /blog {
        root /path/to/blog/root/folder;
        index index.php index.html;

        location ~ \.php$ {
            include fastcgi_params;
            fastcgi_pass unix:/var/run/php5-fpm-blog.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_read_timeout 3600;
        }
    }
}

要在/ blog上提供博客,我尝试通过设置自己的根目录来配置nginx服务器配置下的位置块。我的java站点工作正常。但是对于仅限博客的主页工作和休息,所有页面都会出现404错误。日志显示wordpress / nginx尝试为除主页和静态资源之外的每个请求服务器index.php。

有人可以帮助我吗?

谢谢, 基兰。

0 个答案:

没有答案