程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> IIS7偽靜態web.config配置的方法和規則

IIS7偽靜態web.config配置的方法和規則

編輯:ASP.NET基礎

以前在IIS6上配置偽靜態還是挺復雜的,IIS7之後使用了插件機制,這讓我們做偽靜態變得簡單多了。

一、服務器需要安裝:URL Rewrite 擴展

下載地址:http://www.iis.net/download/URLRewrite

提示:雖然IIS7也可以使用以前在IIS6上那種老的方法來配置偽靜態,但是我們不使用,因為那樣的話就體現不出IIS7的優勢了。

二、在 web.config 中配置偽靜態規則

注意要點

1.參數用“()” 括起來 ,使用 {R:1}來獲得參數

2.多個參數中間用 & 分割

3.name切記不能寫一樣

復制代碼 代碼如下:
<?xml version="1.0"?>
<configuration>
<system.webServer>
        <rewrite>
            <rules>
                <!--301重定向把不帶3W的域名 定向到帶3W-->
                <rule name="Redirect" stopProcessing="true">
                    <match url=".*" />
                    <conditions>
                        <add input="{HTTP_HOST}" pattern="^jb51.net$" />
                    </conditions>
                    <action type="Redirect" url="http://www.jb51.net/{R:0}" redirectType="Permanent" />
                </rule>
                <!--首頁-->
                <rule name="rD">
                    <match url="^$" />
                    <action type="Rewrite" url="Default.aspx" />
                </rule>
                <!--產品列表-->
                <rule name="rP">
                    <match url="^product/$" />
                    <action type="Rewrite" url="ProductList.aspx" />
                </rule>
                <!--產品列表第幾頁-->
                <rule name="rPL">
                    <match url="^product/list-([0-9]*).html$" />
                    <action type="Rewrite" url="ProductList.aspx?page={R:1}" />
                </rule>               
                <!--產品類別列表-->
                <rule name="rPT">
                    <match url="^product/([A-Za-z0-9-]*)/$" />
                    <action type="Rewrite" url="ProductList.aspx?typeUrl={R:1}" />
                </rule>
                <!--產品類別列表第幾頁-->
                <rule name="rPTL2">
                    <match url="^product/([A-Za-z0-9-]*)/list-([0-9]*).html$" />
                    <action type="Rewrite" url="ProductList.aspx?typeUrl={R:1}&page={R:2}" />
                </rule>
                <!--產品詳細-->
                <rule name="rPd">
                    <match url="^product/([A-Za-z0-9-]*)/([A-Za-z0-9-]+).html$" />
                    <action type="Rewrite" url="ProductDetail.aspx?typeUrl={R:1}&url={R:2}" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

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