全球主机交流论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

CeraNetworks网络延迟测速工具IP归属甄别会员请立即修改密码
查看: 3220|回复: 12

哪位大哥帮忙把这个apache的伪静态转成nginx的

[复制链接]
发表于 2011-7-13 19:34:16 | 显示全部楼层 |阅读模式
  1. RewriteEngine On

  2. RewriteRule ^(.*)list/(.+)_(.+)\.html$ $1/list\.php\?uid=$2&page=$3
  3. RewriteRule ^(.*)list/(.+)\.html$ $1/list\.php\?uid=$2
  4. RewriteRule ^(.*)content/(.+)\.html$ $1/content.php\?uid=$2
复制代码
我试了那个在线自动转换的网站,转了以后没用,哪位高人帮忙下,谢谢。


在线转换的结果
  1.         rewrite ^/(.*)list/(.+)_(.+)\.html$ /$1/list\.php\?uid=$2&page=$3;
  2.         rewrite ^/(.*)list/(.+)\.html$ /$1/list\.php\?uid=$2;
  3.         rewrite ^/(.*)content/(.+)\.html$ /$1/content.php\?uid=$2;
复制代码

[ 本帖最后由 yohu 于 2011-7-13 19:36 编辑 ]
发表于 2011-7-13 20:05:21 | 显示全部楼层
==高人吧,不会这个
发表于 2011-7-13 21:34:12 | 显示全部楼层
nginx如果直接放进伪静态专用的conf
需要定义主机头
 楼主| 发表于 2011-7-13 21:38:15 | 显示全部楼层
原帖由 360111697 于 2011-7-13 20:18 发表
nginx不支持.htaccess的 请问你把规则放在哪里了?


我知道啊,我是要加进nginx.conf里面啊,但是我按自动转换的加进去不能用。
 楼主| 发表于 2011-7-13 21:41:51 | 显示全部楼层
原帖由 西门小三 于 2011-7-13 21:34 发表
nginx如果直接放进伪静态专用的conf
需要定义主机头



主机头?是指绑定域名是吧?有啊,我配置原来都有,已经在用的了。我现在的配置,中间那段就是我加进去的伪静态规则,但是没用。
  1. server {
  2.         listen 12.34.56.78:80;
  3.         root /var/www/abc;
  4.         index index.php index.html index.htm;
  5.         server_name abc.com;

  6.        location = / {

  7.         rewrite ^(.*)list/(.+)_(.+)\.html$ $1/list\.php\?uid=$2&page=$3 last;
  8.         rewrite ^(.*)list/(.+)\.html$ $1/list\.php\?uid=$2 last;
  9.         rewrite ^(.*)content/(.+)\.html$ $1/content.php\?uid=$2 last;

  10.        }


  11.         location ~ \.php$ {
  12.                 fastcgi_pass 127.0.0.1:9000;
  13.                 fastcgi_index index.php;
  14.                 fastcgi_param SCRIPT_FILENAME /var/www/abc$fastcgi_script_name;
  15.                 include fastcgi_params;
  16.         }
  17.        }

复制代码
发表于 2011-7-13 21:46:56 | 显示全部楼层
看上去应该没问题,不懂,问高人。
发表于 2011-7-13 21:47:16 | 显示全部楼层
小夜是砖家
发表于 2011-7-13 22:42:28 | 显示全部楼层
转换的可以啊
 楼主| 发表于 2011-7-14 00:24:32 | 显示全部楼层
原帖由 lemss 于 2011-7-13 22:42 发表
转换的可以啊



就是测试了不行,我测试了N遍,都是不生效,打开静态页面,全部404。
发表于 2011-7-14 00:35:45 | 显示全部楼层
把规则单独做个文件放到nginx/conf里面

然后域名的conf文件include 123.conf就可以了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|全球主机交流论坛

GMT+8, 2025-1-20 07:15 , Processed in 0.063375 second(s), 6 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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