ubuntu 下 wordpress 设置 Permalink 为 自定义结构后出现404页面 nginx - 404 not found page for permalinks

来源:互联网 发布:内置软件卸载器 编辑:程序博客网 时间:2024/04/19 08:33

1. 先打开 nginx 配置文件 default 

cd /etc/nginx/sites-available/

2. 编辑 default 文件

sudo vi default

3. server 内的 location /{ ... } 加入 

try_files $uri $uri/ /index.php?$args;

完成如下:

server {        listen 80 default_server;        listen [::]:80 default_server ipv6only=on;        root /usr/share/nginx/html;        index index.php index.htm;        # Make site accessible from http://localhost/        server_name localhost;        location / {                # First attempt to serve request as file, then                # as directory, then fall back to displaying a 404.                #try_files $uri $uri/ =404;                try_files $uri $uri/ /index.php?$args;                # Uncomment to enable naxsi on this location                # include /etc/nginx/naxsi.rules        }


0 0
原创粉丝点击