在IIS6中.net項(xiàng)目偽靜態(tài)重寫路徑的配置方法圖解和示例。
1、右鍵點(diǎn)擊 要設(shè)置網(wǎng)站的網(wǎng)站
2、屬性 ——》主目錄 ——》配置——》
3、如右側(cè)窗口,找到 .aspx 擴(kuò)展名——》編輯——》復(fù)制 可執(zhí)行文件的路徑——》關(guān)閉
4、點(diǎn)擊 添加——》粘貼 剛復(fù)制的 可執(zhí)行文件路徑
5、擴(kuò)展名填寫 .html (如果是 .htm 或者 任意你想要的擴(kuò)展都可以 前提是以后的應(yīng)用程序擴(kuò)展列表里邊沒有該擴(kuò)展)
6、不選中 確認(rèn)文件是否存在
7、確定
iis6 web.config 偽靜態(tài)配置方法
1、參數(shù)用()括起來,使用 $1 來獲得參數(shù)。
2、多個(gè)參數(shù)的時(shí)候使用&分割。
3、把Intelligencia.UrlRewriter.dll添加到bin目錄
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter"/>
</configSections>
<system.web>
<httpModules>
<add type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" name="UrlRewriter"/>
</httpModules>
</system.web>
<rewriter>
<!--首頁-->
<rewrite url="~/default.html$" to="~/default.aspx" processing="stop"/>
<!--新聞-->
<rewrite url="~/news/list-([A-Za-z0-9-]*).html$" to="~/NewsList.aspx?typeUrl=$1" processing="stop"/>
<rewrite url="~/news/list-([A-Za-z0-9-]*)-([0-9]*).html$" to="~/NewsList.aspx?typeUrl=$1&page=$2" processing="stop"/>
<!--新聞詳細(xì)-->
<rewrite url="~/news/([A-Za-z0-9-]*).html$" to="~/NewsDetail.aspx?url=$1" processing="stop"/>
</rewriter>
</configuration>