ASP.NET URL Rewrite. URL重寫

iDotNetSpace發表於2009-02-01

URL 重寫是擷取傳入 Web 請求並自動將請求重定向到其他 URL 的過程。
  比如瀏覽器發來請求hostname/101.aspx ,伺服器自動將這個請求中定向為http://hostname/list.aspx?id=101。

url重寫的優點在於:
    縮短url,隱藏實際路徑提高安全性
    易於使用者記憶和鍵入。
    易於被搜尋引擎收錄

二 實現url重寫的基本方法
   下載MS的URLRewriter.dll,放到你的web程式的bin下
下載地址1:http://www.rickel.cn/uploads/DevTools/MSDNURLRewriting.msi
下載地址2:
download.microsoft.com/download/0/4/6/0463611e-a3f9-490d-a08c-877a83b797cf/MSDNURLRewriting.msi

下載完成後,在web.config裡設定如下:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtxml version="1.0" encoding="utf-8" ?>
<!--overred--&gt
<configuration>
    <configSections>
        <section name="RewriterConfig"type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" />
    configSections>
    <RewriterConfig>
        <Rules>
            <RewriterRule>
                <LookFor>~/d(\d+)\.aspxLookFor>
                <SendTo>~/default.aspx?id=$1SendTo>
            RewriterRule>
        Rules>
    RewriterConfig>
    <system.web>
        <httpHandlers>
            <add verb="*" path="*.aspx" type="URLRewriter.RewriterFactoryHandler, URLRewriter" />
        httpHandlers>
   
system.web
>
configuration>



其中

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt<section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" />


用於指定配置節"RewriterConfig"的處理程式類的名稱為”URLRewriter.Config.RewriterConfigSerializerSectionHandler”,該類存在於bin目錄下的URLRewriter .dll檔案中

關鍵的是這兩句

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt<LookFor>~/d(\d+)\.aspxLookFor>
<SendTo>~/default.aspx?id=$1SendTo>


<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt<LookFor>~/d(\d+)\.aspxLookFor>

表示,使用者輸入的url,d(\d+)\.aspx是 url中檔名匹配的正規表示式(此處為字母d開頭,後面跟一個或多個數字,並以.aspx結尾。使用者也可根據自己的需要自行設定)。

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt<SendTo>~/default.aspx?id=$1SendTo>

,表示當伺服器接收到符合上面條件的請求後如何重寫url。此處表示訪問defalutl.aspx並傳入引數id,其值$1將用使用者請求的檔名中的第一個數字來表示。
例如使用者輸入 hostname/d11.aspx,伺服器會把他重寫為http://hostname/default.aspx?id=11。換句話說使用者輸入http: //hostname/d11.aspx,實際訪問的是http://hostname/default.aspx?id=11。這樣就起到了隱藏真實檔名,並便於使用者記憶的作用。

處理回發
在重寫後的url裡如果產生回發,例如有一個按鈕,又呼叫了該被重寫的aspx,使用者瀏覽器中將會顯示該aspx檔案實際的地址,也就是http: //hostname/default.aspx?id=11。但從使用者的角度考慮,如 果單擊按鈕時突然看到 URL 更改會使他們感到不安。因此必須解決這個問題。
解決方法有二:
(1)自己定義一個Actionlessform類,在aspx中不再使用系統提供的form. 標記

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtnamespace ActionlessForm.
{
    public class
 Form : System.Web.UI.HtmlControls.HtmlForm
    {
       
protected override void
 RenderAttributes(HtmlTextWriter writer)
        {
            writer.WriteAttribute(
"name"this
.Name);
            base.Attributes.Remove("name"
);
            writer.WriteAttribute(
"method"this
.Method);
            base.Attributes.Remove("method"
);
            this
.Attributes.Render(writer);
            base.Attributes.Remove("action"
);
            if (base.ID != null
)
                writer.WriteAttribute(
"id"base
.ClientID);
         }
    }
}



建立此類並對其進行編譯之後,要在 ASP.NET Web 應用程式中使用它,應首先將其新增到 Web 應用程式的 References 資料夾中。然後,要使用它來代替 HtmlForm. 類,做法是在 ASP.NET 網頁的頂部新增以下內容:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt@ Register TagPrefix="skm" Namespace="ActionlessForm" Assembly="ActionlessForm" %>


然後,將 (如果有)替換為:
並將右邊的 標記替換為:

個人並不推薦該方法
(2)第二種方法就是繼承page,這樣你不需要在aspx頁中改任何東西。
程式碼:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtusing System;
using
 System.IO;
using
 System.Web;
using
 System.Web.UI;
namespace
 URL
{
    public class
 OLPage : Page
    {
        public
 OLPage()
        {}
        protected override void
 Render(HtmlTextWriter writer)
        {
            if (writer is
 System.Web.UI.Html32TextWriter)
            {
                writer 
= new
 FormFixerHtml32TextWriter(writer.InnerWriter);
            }
            else

            {
                writer 
= new FormFixerHtmlTextWriter(writer.InnerWriter);
            }
            base
.Render(writer);
        }
    }

    internal class
 FormFixerHtml32TextWriter : System.Web.UI.Html32TextWriter
    {

        private
 string _url; // 假的URL
    internal FormFixerHtml32TextWriter(TextWriter writer):base(writer)
    {
        _url = HttpContext.Current.Request.RawUrl;
    }

    public override void WriteAttribute(string name, string value, bool encode)
    {
        if (_url != null && string.Compare(name, "action"true== 0)
        {
            value = _url;
        }
        base.WriteAttribute(name, value, encode);
        }
    }
internal class FormFixerHtmlTextWriter : System.Web.UI.HtmlTextWriter
{
    private string _url;
    internal FormFixerHtmlTextWriter(TextWriter writer):base(writer)
    {
        _url = HttpContext.Current.Request.RawUrl;
    }
   
    public override void WriteAttribute(string name, string value, bool encode)
    {
        if (_url != null && string.Compare(name, "action"true== 0)
        {
            value = _url;
        }
        base.WriteAttribute(name, value, encode);
    }
}
}



把這個檔案編譯成dll,並在你的專案中引用它。

然後把專案中的所有aspx檔案對應的cs檔案中的繼承page類的程式碼改寫為繼承OLPage。
例如

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtpublic class WebForm1:page


改寫為

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtpublic class WebForm1:URL.OLPage



這樣就解決回發問題。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-544947/,如需轉載,請註明出處,否則將追究法律責任。

相關文章