woailian 发表于 2014-8-24 17:07:51

shopnc b2b2c 的伪静态规则 设置好出现 404 军哥能看看怎么了吗

这是网站的 conf server

{

listen 80;

#listen [::]:80;

server_name www.xxx.cn xxx.cn shop.xxx.com;

index index.html index.htm index.php default.html default.htm default.php;

root/xxx/wangzhan/xxx/Web;


include htaccess.conf;

#error_page   404   /404.html;

location ~ [^/]\.php(/|$)

{

# comment try_files $uri =404; to enable pathinfo

try_files $uri =404;

fastcgi_passunix:/tmp/php-cgi.sock;

fastcgi_index index.php;

include fastcgi.conf;

#include pathinfo.conf;

}


location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$

{

expires      30d;

}


location ~ .*\.(js|css)?$

{

expires      12h;

}


access_log/home/wwwlogs/xxx.logaccess;

}


下面是

htaccess.conf 里的文件


location / {
if (!-e $request_filename) {
rewrite ^/shop/goods-(+)(-?)(*).html$ /index.php?act=goods&goods_id=$1&id=$2 last;
rewrite ^/shop/groupbuy-(+)-(+).html$ /index.php?act=show_groupbuy&op=groupbuy_detail&group_id=$1&id=$2 last;
rewrite ^/shop/article-(+).html$ /index.php?act=article&article_id=$1 last;
rewrite ^/shop/store-(+).html$ /index.php?act=show_store&store_id=$1 last;
rewrite ^/shop/activity-(+)-(*).html$ /index.php?act=activity&activity_id=$1&nav_id=$2 last;
rewrite ^/shop/store_nav-(+)-(+).html$ /index.php?act=show_store&store_id=$1&article=$2 last;
rewrite ^/shop/document-(+).html$ /index.php?act=document&code=$1 last;
rewrite ^/shop/coupon_info-(+)-(+).html$ /index.php?act=coupon_store&op=detail&coupon_id=$1&id=$2 last;
}
}
军哥看看哪里不对。只设置这两个地方 别的文件我没有动

[ 本帖最后由 woailian 于 2014-8-24 17:12 编辑 ]

licess 发表于 2014-8-24 21:01:37

伪静态有问题吧

licess 发表于 2014-8-24 22:19:55

伪静态有问题吧
页: [1]
查看完整版本: shopnc b2b2c 的伪静态规则 设置好出现 404 军哥能看看怎么了吗