找回密码
 立即注册
查看: 2457|回复: 2

nginx伪静态老是出错,纠结啊

[复制链接]

已分享文件:0个

网盘今日赚:积分

发表于 2010-9-21 15:04:16 | 显示全部楼层 |阅读模式
  1. server
  2.         {
  3.                 listen       80;
  4.                 server_name www.sudua.com;
  5.                 index index.html index.htm index.php;
  6.                 root  /home/sudua;
  7.         include location.conf;
  8.         location / {
  9. rewrite ^file-([0-9]+)\.html$ viewfile.php?file_id=$1 last;
  10. rewrite ^viewfile-([0-9]+)-([a-zA-Z0-9]*)\.html$ downfile.php?action=view&file_id=$1&file_key=$2 last;
  11. rewrite ^downfile-([0-9]+)-([a-zA-Z0-9]*)\.html$ downfile.php?file_id=$1&file_key=$2 last;
  12. rewrite ^space-(.+)\.html$ space.php?username=$1 last;
  13.                    }
  14.         }
复制代码
不知道什么地方有问题!~~~来人指教下
程序5.1的

已分享文件:20个

网盘今日赚:积分

发表于 2010-9-21 15:31:42 | 显示全部楼层
rewrite ^(.*)/file-([0-9]+)\.html$ $1/viewfile.php?file_id=$2 last;
rewrite ^(.*)/viewfile-([0-9]+)-([a-zA-Z0-9]*)\.html$ $1/downfile.php?action=view&file_id=$2&file_key=$3 last;
rewrite ^(.*)/publicfile\.html$ $1/public.php last;
rewrite ^(.*)/downfile-([0-9]+)-([a-zA-Z0-9]*)\.html$ $1/downfile.php?file_id=$2&file_key=$3 last;
rewrite ^(.*)/publicfile-([0-9]+)-([0-9]+)\.html$ $1/public.php?pid=$2&cate_id=$3 last;
rewrite ^(.*)/space-(.+)\.html$ $1/space.php?username=$2 last;

已分享文件:0个

网盘今日赚:积分

 楼主| 发表于 2010-9-21 15:43:36 | 显示全部楼层
  1. server
  2.         {
  3.                 listen       80;
  4.                 server_name www.sudua.com;
  5.                 index index.html index.htm index.php;
  6.                 root  /home/sudua;
  7.         include location.conf;
  8.         location / {
  9. rewrite ^(.*)/file-([0-9]+)\.html$ $1/viewfile.php?file_id=$2 last;
  10. rewrite ^(.*)/viewfile-([0-9]+)-([a-zA-Z0-9]*)\.html$ $1/downfile.php?action=view&file_id=$2&file_key=$3 last;
  11. rewrite ^(.*)/publicfile\.html$ $1/public.php last;
  12. rewrite ^(.*)/downfile-([0-9]+)-([a-zA-Z0-9]*)\.html$ $1/downfile.php?file_id=$2&file_key=$3 last;
  13. rewrite ^(.*)/publicfile-([0-9]+)-([0-9]+)\.html$ $1/public.php?pid=$2&cate_id=$3 last;
  14. rewrite ^(.*)/space-(.+)\.html$ $1/space.php?username=$2 last;
  15.                    }
  16.         }
复制代码
升级到9.13版本 依然出错 404 闷哦 DZ等程序伪静态设置正常
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|PHPDisk系统交流社区 ( 粤ICP备10073657号 )

GMT+8, 2024-11-22 04:01 , Processed in 0.050346 second(s), 25 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表