2、修改web.config的內(nèi)容。
代碼如下:
<system.web>
<httpHandlers>
<add verb="*" path="*.zhtml" type="ZDIL.URLRewriter.RewriterFactoryHandler, ZDILURLRewriter" />
</httpHandlers>
</system.web>
其中*.zhtml 就是地址欄里面寫的網(wǎng)頁的擴(kuò)展名,就是給用戶看的,這個(gè)可以隨意改(但是要符合擴(kuò)展名的規(guī)則?。?。當(dāng)然要和第一步里面的設(shè)置相一致才行。
3、寫一個(gè)類。代碼
代碼如下:
using System;
using System.IO;
using System.Web;
using System.Web.UI;
namespace ZDIL.URLRewriter
{
/**//// <summary>
/// URL重寫
/// </summary>
public class RewriterFactoryHandler : IHttpHandlerFactory
{
/**//// <summary>
/// GetHandler is executed by the ASP.NET pipeline after the associated HttpModules have run. The job of
/// GetHandler is to return an instance of an HttpHandler that can process the page.
/// </summary>
/// <param name="context">The HttpContext for this request.</param>
/// <param name="requestType">The HTTP data transfer method (<b>GET</b> or <b>POST</b>)</param>
/// <param name="url">The RawUrl of the requested resource.</param>
/// <param name="pathTranslated">The physical path to the requested resource.</param>
/// <returns>An instance that implements IHttpHandler; specifically, an HttpHandler instance returned
/// by the <b>PageParser</b> class, which is the same class that the default ASP.NET PageHandlerFactory delegates
/// to.</returns>
public virtual IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated)
{
string sendToUrl = url; //地址欄里面的地址
string filePath = pathTranslated;
string sendToURLString = "/web/index.aspx"; //真正要訪問的頁面
string queryString = ""; //參數(shù)。比如 ?id=123
filePath = context.Server.MapPath(sendToURLString); //物理地址
//這句最重要了。轉(zhuǎn)向了。
context.RewritePath(sendToURLString, String.Empty, queryString);
return PageParser.GetCompiledPageInstance(url, filePath, context);
}
public virtual void ReleaseHandler(IHttpHandler handler)
{
}
}
}
這個(gè)類呢,要寫在一個(gè)單獨(dú)的項(xiàng)目里面,然后編譯成 ZDILURLRewriter.DLL文件。(注意文件名,寫錯(cuò)了就不能正常運(yùn)行了)。
4、完成了。
打開IE ,在地址欄里輸入 http://.../1.zhtml。
瀏覽者看到是一個(gè)靜態(tài)頁的地址,但是實(shí)際上訪問的卻是 /web/index.aspx 這個(gè)動(dòng)態(tài)網(wǎng)頁。
怎么樣簡(jiǎn)單吧。
當(dāng)然了,這個(gè)是最簡(jiǎn)單的,簡(jiǎn)單到了“不能用”的地步了。因?yàn)樗麜?huì)把所有的 *.zhtml 的訪問都“重寫”到 /web/index.aspx 。
至于把什么樣的網(wǎng)頁重寫到哪個(gè)網(wǎng)頁,這里就不介紹了(這里只講方法,不講實(shí)現(xiàn)的細(xì)節(jié))。
方法很多了,原作是通過正則來匹配的,我是通過 string sendToUrl = url; 來判斷的。
其他的就看你們的需要了。聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com