程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> .net UrlReWriter 使用經驗小結

.net UrlReWriter 使用經驗小結

編輯:.NET實例教程

下載地址:http://download.microsoft.com/download/0/4/6/0463611e-a3f9-490d-a08c-877a83b797cf/MSDNURLRewriting.msi

UrlRewriter 是微軟封裝好了的一個URL重寫組件。使用它可以讓我節約很多自已開發的時間。


好了,開始講述我的應用經驗,這只是很菜鳥的經驗,高手就不用看了。

第一步,請從此下載此組件。解壓,把UrlRewriter.dll copy到你的項目 bin 目錄下。

第二步,在Web.config中加入:

<configSections>
    <section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" />
  </configSections>
  <RewriterConfig>
    <Rules>
      <!-- Rules for Blog Content Displayer -->
      <RewriterRule>
        <LookFor>~/read/(.[0-9]*)\.ASPx</LookFor>
        <SendTo>~/read.ASPx?aid=$1</SendTo>
      </RewriterRule>
      <RewriterRule>
        <LookFor>~/read/(.[0-9]*)\.Html</LookFor>
        <SendTo>~/read.ASPx?aid=$1</SendTo>
      </RewriterRule>
      <RewriterRule>
        <LookFor>~/read/(.[0-9]*)\.htm</LookFor>
        <SendTo>~/read.ASPx?aid=$1</SendTo>
      </RewriterRule>
      <RewriterRule>
        <LookFor>~/read/(.[0-9]*)\.do</LookFor>
        <SendTo>~/read.ASPx?aid=$1</SendTo>
      </RewriterRule>
      <RewriterRule>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved