繁体   English   中英

如何在nginx中配置wordpress?

[英]how to config wordpress in nginx?

伙计们,我的服务器有3个位置,

我将我的nginx配置为:

server {
    listen 80;
    listen [::]:80;


    server_name www.zavie.co zavie.co 81.91.147.131;

    location / {
            root /home/zavie/zavieco/zavie;

            index index.php coming-soon.html index.htm index.nginx-debian.html;


    }
    location /word {
            index index.php index.html index.htm;
            root /home/zavie/zavieco/word;
             fastcgi_pass unix:/run/php/php7.2-fpm.sock;

    }
    location ~ /phpmyadmin {

            alias /home/zavie/zavieco/phpmyadmin;
            fastcgi_pass unix:/run/php/php7.2-fpm.sock;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
            include snippets/fastcgi-php.conf;
    }
    location /static/ {
            root /home/zavie/zavieco/zavie360/zavie360;
    }
     location /zavie360 {

            alias /home/zavie/zavieco/zavie360;
}
}

但是,当我打开zavie.co/word时,将不会打开wordpress,我该如何配置呢?

除非您在/home/zavie/zavieco/word/word下安装了WordPress,否则您为root指令使用了错误的值。 有关详细信息,请参见此文档

您的location /word块无法提供WordPress的静态资产。

使用这样的东西:

location ^~ /word {
    root /home/zavie/zavieco;
    index index.php;

    try_files $uri $uri/ /word/index.php;

    location ~ \.php$ {
        try_files $uri =404;

        include fastcgi_params;
        fastcgi_pass unix:/run/php/php7.2-fpm.sock;
        fastcgi_param  SCRIPT_FILENAME  $request_filename;
    }
}

有关详细信息,请参见此文档

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM