我有一个地址为的网站,site.com
还有一个 WordPress 为site.com/blog
. 我会更改 nginx 中的 WordPress 根目录。
这是我的配置:
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /var/www/html;
index index.php index.html index.htm;
server_name localhost;
server_name site.com www.site.com;
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/html;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
}
location /blog/ {
root /var/www/blog;
}
}
打开时出现以下错误site.com/blog
404 未找到
nginx/1.14.0 (Ubuntu)
保持目录结构简单。不要将内容移到定义的文档根目录之外,除非您有真正好的技术理由这样做,因为这会使配置 Web 服务器成为一场噩梦。
您需要添加
try_files $uri $uri/ /index.php?q=$uri$args;
到您的location /blog
块中,以便 nginx 知道要在该位置查找哪些文件。试试这个,它会解决你的问题