伪静态步骤web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <!--第一步注册url重写模块放到webconfig的最上部-->
  <configSections>
    <section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" />
  </configSections>
  <!--第二步添加重写规则-->
  <RewriterConfig>
    <!--先制定全部重写规则内容-->
    <Rules>
      <!--制定每个单独页面的规则-->
      <RewriterRule>
        <!--原始请求地址-->
        <SendTo><![CDATA[~/news.aspx?id=$1&pid=$2]]></SendTo>
        <!--重写后的地址-->
        <LookFor>~/news/(.[0-9]*)/(.[\d]*)\.html</LookFor>
      </RewriterRule>
      <RewriterRule>
        <!--原始请求地址-->
        <SendTo><![CDATA[~/product.aspx?pid=$1]]></SendTo>
        <!--重写后的地址-->
        <LookFor>~/product/(.[\d]*)\.zangdalei</LookFor>
      </RewriterRule>
    </Rules>
  </RewriterConfig>
    <system.web>
      <compilation debug="false" targetFramework="4.0">
        <!--第四部url重写防止真实的页面也被重写如果网站中真实存在页面,需要添加编译指令不编译真实的html文件-->
        <buildProviders>
          <add extension=".html" type="System.Web.Compilation.PageBuildProvider" />
        </buildProviders>
      </compilation>
      <!--第三部url重写 将用户的请求页面交给相应的处理程序,注意请求的后缀名格式-->
      <httpHandlers>
        <add verb="*" path="*.html" type="URLRewriter.RewriterFactoryHandler, URLRewriter" />
        <add verb="*" path="*.zangdalei" type="URLRewriter.RewriterFactoryHandler, URLRewriter" />
      </httpHandlers>
    </system.web>
    <system.webServer>
        <handlers>
            <add name="aspnethtml" path="*.html" verb="GET,POST" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" preCondition="classicMode,runtimeVersionv4.0,bitness32" />
          <add name="aspnetzangdalei" path="*.zangdalei" verb="GET,POST" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" preCondition="classicMode,runtimeVersionv4.0,bitness32" />
        </handlers>
        <defaultDocument>
            <files>
                <clear />
                <add value="default.aspx" />
                <add value="default.html" />
            </files>
        </defaultDocument>
    </system.webServer>
</configuration>

 

来源:http://www.cnblogs.com/z-j7788/archive/2012/12/21/2827863.html

转载于:https://www.cnblogs.com/myhunter/archive/2012/12/21/2828335.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值