Nginx,Wordpress 3.9.2和重写结果为404

时间:2014-08-09 18:47:41

标签: php wordpress nginx url-rewriting

我之前从未使用过Nginx,但我想尝试将其作为实验尝试,而我却试图在Wordpress中设置漂亮的网址。

但是,如果我将永久链接设置为除查询蜇之外的任何内容,则在尝试转到重写URL时会导致404被抛出。

这是我的Nginx conf可能有人请让我知道我做错了什么?我在没有任何运气的情况下尝试了类似问题的多个答案。

Ngix Conf

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /var/www/;
    index index.php index.html index.htm;

    # Make site accessible from http://localhost/
    server_name site.co.uk;

    client_max_body_size 200M;

    location / {
            index index.php index.html index.htm
            try_files $uri $uri/ /index.php?q=$uri&$args;
    }

    # Add trailing slash to */wp-admin requests.
    rewrite /wp-admin$ $scheme://$host$uri/ permanent;

    location ~*  \.(jpg|jpeg|png|gif|css|js|ico)$ {
            expires max;
            log_not_found off;
    }

    error_page 404 /404.html;

    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
          root /usr/share/nginx/html;
    }

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

    }
}

server {
        listen 80;
        server_name www.site.co.uk;
        return 301 $scheme://site.co.uk$request_uri;
}

因此,例如,如果我尝试访问site.co.uk/my-account,则会发生错误。

提前致谢。 马特

1 个答案:

答案 0 :(得分:1)

我设法通过将以下规则添加到我的nginx配置

来修复它
if (!-e $request_filename)
{
    rewrite ^(.+)$ /index.php?q=$1 last;
}

来自以下网站Farinspace - Wordpress nginx rewrite rules

希望这可以帮助那些遇到与我同样问题的人。