zoukankan      html  css  js  c++  java
  • RewriterConfig 配置

    <RewriterConfig>
        <Rules>
          <RewriterRule>
            <LookFor>~/(\w+)\.html</LookFor>
            <SendTo>~/$1.aspx</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/company/(\w+)\.html</LookFor>
            <SendTo>~/company/$1.aspx</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(index|category|userreg|infoadd|newslist|web|weblist|help)-(\d*)\.html</LookFor>
            <SendTo>~/$1.aspx?cid=$2</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(comlist)-(\d*)\.html</LookFor>
            <SendTo>~/$1.aspx?iid=$2</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(company)-(\d*)\.html</LookFor>
            <SendTo>~/$1.aspx?cid=$2</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(ComProduct)-(\d*)\.html</LookFor>
            <SendTo>~/$1.aspx?cid=$2</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(ComCouponsList)-(\d*)\.html</LookFor>
            <SendTo>~/$1.aspx?cid=$2</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(comlist)-(\d*)-(\d*)\.html</LookFor>
            <SendTo>~/$1.aspx?cid=$2&iid=$3</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(Comproductlist)-(\d*)-(\d*)\.html</LookFor>
            <SendTo>~/$1.aspx?cid=$2&tid=$3</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/company/(index|contact)-(\d*)\.html</LookFor>
            <SendTo>~/company/$1.aspx?comid=$2</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/company/(news|product|coupons|Photos|ProductOrder)-(\d*)\.html</LookFor>
            <SendTo>~/company/$1.aspx?id=$2</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/company/(about|photoslist|newslist|comments|couponslist|message|productlist)-(\d*)\.html</LookFor>
            <SendTo>~/company/$1.aspx?comid=$2</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/company/(productlist|newslist|photoslist)-(\d*)-(\d*)\.html</LookFor>
            <SendTo>~/company/$1.aspx?comid=$2&tid=$3</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/company/(\w+)-(\d*)-(\d*)\.html</LookFor>
            <SendTo>~/company/$1.aspx?comid=$2&id=$3</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(info|news|usercenter/comphotos|usercenter/comnews)-(\d*)\.html</LookFor>
            <SendTo>~/$1.aspx?id=$2</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(infolist|infoadd|infosave|infosearch|newssearch)-(\d*)-(\d*).html</LookFor>
            <SendTo>~/$1.aspx?cid=$2&tid=$3</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(newslist)-(\d*)-(\d*).html</LookFor>
            <SendTo>~/$1.aspx?cid=$2&nid=$3</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/(weblist)-(\d*)-(\d*).html</LookFor>
            <SendTo>~/$1.aspx?cid=$2&wid=$3</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/help-(\d*)-(hid|id)-(\d*).html</LookFor>
            <SendTo>~/help.aspx?cid=$1&$2=$3</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/usercenter/(\w+).html</LookFor>
            <SendTo>~/usercenter/$1.aspx</SendTo>
          </RewriterRule>
          <RewriterRule>
            <LookFor>~/usercenter/(ComProductOrder|ComViewProductOrder|UserViewProductOrder|ComCoupons|ComProduct)-(\d*).html</LookFor>
            <SendTo>~/usercenter/$1.aspx?id=$2</SendTo>
          </RewriterRule>
        </Rules>
      </RewriterConfig>
    

      

  • 相关阅读:
    sql server 的存储过程
    vue SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
    数据结构 基本概念和术语
    vue v-show指令
    vue v-model :
    vue 指令
    vue 挂载点 实例 模板
    vue(1) 第一个例子
    【BZOJ1150】[CTSC2007]数据备份Backup 双向链表+堆(模拟费用流)
    【BZOJ1109】[POI2007]堆积木Klo 二维偏序
  • 原文地址:https://www.cnblogs.com/coxsoft/p/2140505.html
Copyright © 2011-2022 走看看