雖然這個問題已經被回答了很多次,但仍然不適合我。 我在除了Nginx主頁以外的所有頁面上都獲得了404。Nginx與wordpress 404在所有頁面上
我張貼在我的配置如下:
server {
listen 80 ;
listen [::]:80;
root /var/www/html/p/swear;
index index.php index.html index.htm;
server_name skinnybikiniswimwear.org;
location/{
try_files $uri /$uri/ /index.php?args =404;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
try_files $uri /index.php?args =404;
fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
我無法找到問題在此配置。
WordPress是安裝在:在/ var/www/html等/ P /發誓
感謝
太好了。這工作,但圖像不渲染。 – viv
好的問題是https。將嘗試修復它。 – viv