如何处理 nginx 上的 WordPress 永久链接?

What to do with WordPress permalink on nginx?

我昨天开始 VPS 安装了 WordPress 并完成了基本设置。但是永久链接有什么用呢?没有人希望使用默认的丑陋 URL 结构。我试图理解 http://wiki.nginx.org/WordPress,但有趣的是 "I don't know where to insert those codes"。他们可能认为他们所有的读者都熟悉 nginx,这并不好笑。

所以,我很确定 .htaccess 在 nginx 中不工作。怎么办?在哪里放置使自定义永久链接起作用的代码? P.S:你知道,如果我设置自定义永久链接,那么输出是 404 页面,如:

所以拜托,我想要一个像 "edit demo.php file and place below code after X" 一样简单的指南。

附加信息:我的 webroot 是 /usr/share/nginx/html,我在那里有两个 WordPress。第一:/usr/share/nginx/html 目录 第二个:/usr/share/nginx/html/video 目录。我想要漂亮的 url 给他们两个。我将两者都 chmod wp-content 改为 775。

Nginx 根本不支持 .htaccess。

您的 nginx 设置是否正确,以便 php 文件由 php-fpm 处理?您的错误屏幕截图不清楚。

您必须编辑您的 nginx 配置文件并告诉它使用 wordpress 控制器来引导请求。

您的 nginx.conf 应该有一个 http 块,在该块中有一个服务器块,在该块中有一些位置块。您需要找到正确的服务器块并插入以下位置块

location / {
    # Check if a file or directory index file exists, else route it to index.php.
    try_files $uri $uri/ /index.php?$args;
}

这是一个完全可用的 wordpress 的完整示例 nginx.conf I 运行:

user www-data;
worker_processes 1;
pid /run/nginx.pid;

events {
    worker_connections 1024;
    multi_accept on;
    use epoll;
}

http {
    client_max_body_size 20M;

    fastcgi_buffers 16 16k;
    fastcgi_buffer_size 32k;

    sendfile on;
    keepalive_timeout 30;
    types_hash_max_size 2048;
    server_tokens off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    gzip on;
    gzip_disable "msie6";
    gzip_vary on;
    gzip_proxied any;
    gzip_comp_level 6;
    gzip_buffers 16 8k;
    gzip_http_version 1.1;
    gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

    server {
        listen 80 default_server;
        server_name www.site.com;

        root /var/www;
        index index.php;

        location / {
            # Check if a file or directory index file exists, else route it to index.php.
            try_files $uri $uri/ /index.php?$args;
        }

        # pass the PHP scripts to FastCGI server
        location ~ \.php$ {
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
        }
    }
}