簡體   English   中英

將IIS7 url重寫部分移出web.config文件

[英]Moving IIS7 url rewrite section out of the web.config file

我在我的web.config文件中創建了一個配置部分,其中包含所有重寫規則,如下所示

<rewrite>
        <outboundRules>
            <rule name="OutboundRewriteCatalogURL" preCondition="ResponseIsHtml1">
                <match filterByTags="A" pattern="^(.*/)Catalog\.aspx\?Catalog=([^=&amp;]+)&amp;(?:amp;)?Title=([^=&amp;]+)$" />
                <action type="Rewrite" value="{R:1}ctlg/{R:2}/{R:3}/" />
            </rule>
            <rule name="OutboundRewriteCategoryURL" preCondition="ResponseIsHtml1">
                <match filterByTags="A" pattern="^(.*/)ProductList\.aspx\?Catalog=([^=&amp;]+)&amp;(?:amp;)?Category=([^=&amp;]+)&amp;(?:amp;)?Title=([^=&amp;]+)$" />
                <action type="Rewrite" value="{R:1}categ/{R:2}/{R:3}/{R:4}/" />
            </rule>
            <rule name="OutboundRewriteFullProductURL" preCondition="ResponseIsHtml1">
                <match filterByTags="A, Form, Img" pattern="^(.*/)Product\.aspx\?Catalog=([^=&amp;]+)&amp;(?:amp;)?Category=([^=&amp;]+)&amp;(?:amp;)?Product=([^=&amp;]+)&amp;(?:amp;)?Title=([^=&amp;]+)$" />
                <action type="Rewrite" value="{R:1}prd/{R:2}-{R:3}-{R:4}/{R:5}/" />
            </rule>
            <preConditions>
                <preCondition name="ResponseIsHtml1">
                    <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
                </preCondition>
            </preConditions>
        </outboundRules>
        <rules>
            <rule name="RedirectCatalogURL" stopProcessing="true">
                <match url="^Catalog\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^Catalog=([^=&amp;]+)&amp;Title=([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect" url="Catalog/{C:1}/{C:2}" appendQueryString="false" />
            </rule>
            <rule name="RewriteCatalogURL" stopProcessing="true">
                <match url="^ctlg/([^/]+)/([^/]+)/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="Catalog.aspx?Catalog={R:1}&amp;Title={R:2}" />
            </rule>
            <rule name="RedirectCategoryURL" stopProcessing="true">
                <match url="^ProductList\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^Catalog=([^=&amp;]+)&amp;Category=([^=&amp;]+)&amp;Title=([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect" url="categ/{C:1}/{C:2}/{C:3}" appendQueryString="false" />
            </rule>
            <rule name="RewriteCategoryURL" stopProcessing="true">
                <match url="^categ/([^/]+)/([^/]+)/([^/]+)/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="ProductList.aspx?Catalog={R:1}&amp;Category={R:2}&amp;Title={R:3}" />
            </rule>
            <rule name="RedirectProductURL" stopProcessing="true">
                <match url="^Product\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^Catalog=([^=&amp;]+)&amp;Category=([^=&amp;]+)&amp;Product=([^=&amp;]+)&amp;Title=([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect" url="prd/{C:1}-{C:2}-{C:3}/{C:4}" appendQueryString="false" />
            </rule>
            <rule name="RewriteProductURL" stopProcessing="true">
                <match url="^prd/([^/]+)-([^/]+)-([^/]+)/([^/]+)/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="Product.aspx?Catalog={R:1}&amp;Category={R:2}&amp;Product={R:3}&amp;Title={R:4}" />
            </rule>
        </rules>
    </rewrite>

它非常好用,但我不想在web.config文件中包含所有這些東西,有沒有辦法在外部配置文件中重寫配置?

您可以將配置拆分為多個文件,並使用configSource屬性將這些部分包含到主web.config文件中,例如:

web.config中:

  <system.web>
    ...
    <profile configSource="profile.config" />
    ...
  </system.web>

profile.config:

<profile>
  <properties>
    <add name="Name" type="String" />
    <add name="Age" type="Int32" />
  </properties>
</profile>

有關詳細信息,請參閱此博客文章此問題

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM