nginx下wordpress路径、伪静态配置

问题 打开wordpress后台,主页可以打开 ,其他功能页面显示路径错误,然后对比了路径 是路径中少了wp-admin部分 ,同时设置文章的伪静态Day and name 方式显示文章链接 突然发现文章链接打不开,显示404错误,这些应该是服务器nginx 站点配置问题
下面是我nginx下wordpress站点的配置文件:

server {
        listen       80;
        server_name  域名;
        index index.html index.htm index.php;
        root 站点所在的目录;

        location / {
        try_files $uri $uri/ /index.php?$args;
        }
        location ~ .*\.(php|php5)?$
        {
                #fastcgi_pass  unix:/tmp/php-cgi.sock;
                fastcgi_pass  127.0.0.1:9000;
                fastcgi_index index.php;
                include fastcgi.conf;
        }
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
                expires 30d;
        }
        location ~ .*\.(js|css)?$
        {
                expires 1h;
        }


        #伪静态设置路径 和日志文件路径
        include /etc/nginx/rewrite/default.conf;
        access_log  /var/log/nginx/wordpress.log;
}

这样配置好了
重启nginx:service nginx restart
博客文章链接正常,后台功能链接正常。

你可能感兴趣的:(linux,nginx)