ioeice 发表于 2011-3-15 23:55:13

WP 在LNMP伪静态 404错误,为什么啊?

?p=1 访问正常,用伪静态路径访问就404出错。。为什么啊?

/%category%/archives/%post_id%

已经启动伪静态了

server
    {
      listen       80;
      server_name XXXXsm.com;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/XXXXsm.com;

      include wordpress,discuz,typecho,sablog,dabr.conf;
      location ~ .*\.(php|php5)?$
            {
                fastcgi_passunix:/tmp/php-cgi.sock;
                fastcgi_index index.php;
                include fcgi.conf;
            }

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
            {
                expires      30d;
            }

      location ~ .*\.(js|css)?$
            {
                expires      12h;
            }

      access_log off;

[ 本帖最后由 ioeice 于 2011-3-15 23:59 编辑 ]

licess 发表于 2011-3-16 09:19:05

回复 1# 的帖子

include wordpress,discuz,typecho,sablog,dabr.conf;

不404才怪。。。。

include wordpress.conf;

mmdmm 发表于 2011-3-16 13:58:30

不404才怪。。。。
页: [1]
查看完整版本: WP 在LNMP伪静态 404错误,为什么啊?