设为首页收藏本站

简体中文 繁體中文 English 日本語 Deutsch 한국 사람 بالعربية TÜRKÇE português คนไทย french

搜索
热搜: 活动 交友 discuz

htaccess转nginx 求转 [复制链接]
查看:77 | 回复:7

287

主题

2241

回帖

5399

积分

论坛元老

积分
5399
发表于 2013-6-27 15:14:32 | 显示全部楼层 |阅读模式
[ol]
  • ErrorDocument 404 /404.html
  • RewriteRule ^(.*)-p([0-9]*)\.html$ /product-view.php?id=$2
  • RewriteRule ^(.*)-n([0-9]*)\.html$ /news-view.php?id=$2
  • RewriteRule ^(.*)-n([0-9]*)-([0-9]*)\.html$ /news-view.php?id=$2&page=$3
  • RewriteRule ^(.*)-i([0-9]*)\.html$ /info-view.php?id=$2
  • RewriteRule ^(.*)-i([0-9]*)-([0-9]*)\.html$ /info-view.php?id=$2&page=$3
  • RewriteRule ^(.*)-nc([0-9]*)\.html$ /news.php?nclassid=$2
  • RewriteRule ^(.*)-nc([0-9]*)-([0-9]*)\.html$ /news.php?nclassid=$2&page=$3
  • RewriteRule ^(.*)-nc([0-9]*)-(.*)-([0-9]*)\.html$ /news.php?nclassid=$2&page=$4&query=$3
  • RewriteRule ^reviews-([0-9]*)-([0-9]*)\.html$ /comment.php?pid=$1&page=$2
  • RewriteRule ^(.*)-c([0-9]*)\.html$ /products.php?classid=$2
  • RewriteRule ^(.*)-c([0-9]*)-([0-9]*)\.html$ /products.php?classid=$2&page=$3
  • RewriteRule ^(.*)-c([0-9]*)-(.*)-([0-9]*)\.html$ /products.php?classid=$2&page=$4&query=$3
  • RewriteRule ^(.*)-s([0-9]*)\.html$ /products.php?disp=$2
  • RewriteRule ^(.*)-s([0-9]*)-([0-9]*)\.html$ /products.php?disp=$2&page=$3
  • RewriteRule ^(.*)-ptag([0-9]*)\.html$ /tag-view.php?id=$2
  • RewriteRule ^(.*)-ptag([0-9]*)-([0-9]*)\.html$ /tag-view.php?id=$2&page=$3
  • RewriteRule ^attr-([0-9]*)-(.*)-([0-9]*)\.html$ /attribute.php?classid=$1&page=$3&tags=$2
  • RewriteRule ^Monthly-Update-(.*)-([0-9]*)-([0-9]*)-([0-9]*)\.html$ /monthly-update.php?year=$3&page=$4&month=$2
  • RewriteRule ^OEM-Products-([0-9]*)\.html$ /oem.php?page=$1
  • RewriteRule ^video-([0-9]*)\.html$ /video.php?page=$1
  • RewriteRule ^thumb_(.*)__(.*)__(.*)$ /image.php?pic=$3&style=$1&folder=$2
  • RewriteRule ^(cnlogin|comment|download|error|feedback|quick-step|get-pwd|image-view|index|news|products|profile|register|search|shopcart|sitemap|step).html(.*)$ /$1.php$3
  • [/I][/ol]复制代码
  • 287

    主题

    2241

    回帖

    5399

    积分

    论坛元老

    积分
    5399
     楼主| 发表于 2013-6-27 15:16:25 | 显示全部楼层
    主要这2个

    RewriteRule ^video-([0-9]*)\.html$ /video.php?page=$1
    RewriteRule ^thumb_(.*)__(.*)__(.*)$ /image.php?pic=$3&style=$1&folder=$2

    用了网上的工具 转换失败

    287

    主题

    2241

    回帖

    5399

    积分

    论坛元老

    积分
    5399
     楼主| 发表于 2013-6-27 15:22:02 | 显示全部楼层
    求顶

    40

    主题

    320

    回帖

    786

    积分

    高级会员

    积分
    786
    发表于 2013-6-27 15:46:23 | 显示全部楼层
    出点银子吧。。

    74

    主题

    981

    回帖

    2204

    积分

    金牌会员

    积分
    2204
    发表于 2013-6-27 15:46:57 | 显示全部楼层


    11

    主题

    202

    回帖

    451

    积分

    中级会员

    积分
    451
    发表于 2013-6-27 18:43:29 | 显示全部楼层
            rewrite ^/(.*)-p([0-9]*).html$ /product-view.php?id=$2;
            rewrite ^/(.*)-n([0-9]*).html$ /news-view.php?id=$2;
            rewrite ^/(.*)-n([0-9]*)-([0-9]*).html$ /news-view.php?id=$2&page=$3;
            rewrite ^/(.*)-i([0-9]*).html$ /info-view.php?id=$2;
            rewrite ^/(.*)-i([0-9]*)-([0-9]*).html$ /info-view.php?id=$2&page=$3;
            rewrite ^/(.*)-nc([0-9]*).html$ /news.php?nclassid=$2;
            rewrite ^/(.*)-nc([0-9]*)-([0-9]*).html$ /news.php?nclassid=$2&page=$3;
            rewrite ^/(.*)-nc([0-9]*)-(.*)-([0-9]*).html$ /news.php?nclassid=$2&page=$4&query=$3;
            rewrite ^/reviews-([0-9]*)-([0-9]*).html$ /comment.php?pid=$1&page=$2;
            rewrite ^/(.*)-c([0-9]*).html$ /products.php?classid=$2;
            rewrite ^/(.*)-c([0-9]*)-([0-9]*).html$ /products.php?classid=$2&page=$3;
            rewrite ^/(.*)-c([0-9]*)-(.*)-([0-9]*).html$ /products.php?classid=$2&page=$4&query=$3;
            rewrite ^/(.*)-s([0-9]*).html$ /products.php?disp=$2;
            rewrite ^/(.*)-s([0-9]*)-([0-9]*).html$ /products.php?disp=$2&page=$3;
            rewrite ^/(.*)-ptag([0-9]*).html$ /tag-view.php?id=$2;
            rewrite ^/(.*)-ptag([0-9]*)-([0-9]*).html$ /tag-view.php?id=$2&page=$3;
            rewrite ^/attr-([0-9]*)-(.*)-([0-9]*).html$ /attribute.php?classid=$1&page=$3&tags=$2;
            rewrite ^/Monthly-Update-(.*)-([0-9]*)-([0-9]*)-([0-9]*).html$ /monthly-update.php?year=$3&page=$4&month=$2;
            rewrite ^/OEM-Products-([0-9]*).html$ /oem.php?page=$1;
            rewrite ^/video-([0-9]*).html$ /video.php?page=$1;
            rewrite ^/thumb_(.*)__(.*)__(.*)$ /image.php?pic=$3&style=$1&folder=$2;
            rewrite ^/(cnlogin|comment|download|error|feedback|quick-step|get-pwd|image-view|index|news|products|profile|register|search|shopcart|sitemap|step).html(.*)$ /$1.php$3;

    12

    主题

    347

    回帖

    742

    积分

    高级会员

    积分
    742
    发表于 2013-6-27 19:02:48 | 显示全部楼层
    免费小工在楼上

    15

    主题

    1500

    回帖

    3063

    积分

    论坛元老

    积分
    3063
    发表于 2013-6-27 19:04:04 | 显示全部楼层
    帮顶我唔 识
    您需要登录后才可以回帖 登录 | 立即注册

    论坛客服/商务合作/投诉举报:2171544 (QQ)
    落伍者创建于2001/03/14,本站内容均为会员发表,并不代表落伍立场!
    拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论!
    落伍官方微信:2030286 邮箱:(djfsys@gmail.com|tech@im286.com)
    © 2001-2014

    浙公网安备 33060302000191号

    浙ICP备11034705号 BBS专项电子公告通信管[2010]226号

      落伍法律顾问: ITlaw-庄毅雄

    Archiver|手机版|Discuz! X

    GMT+8, 2026-6-10 16:23 , Processed in 0.016466 second(s), 4 queries , Gzip On, Redis On.

    返回顶部