zoukankan      html  css  js  c++  java
  • IIS URL Rewrite – Installation and Use

    IIS URL Rewrite – Installation and Use

    Posted by Nick LeFevre | Leave a reply

    IIS URL Rewrite Installation

    To get the below URL Rewrite code to work in IIS, you must first install the URL Rewrite module. The URL Rewrite module is not installed by default. The IIS URL Rewrite module may be a better solution than HTTP Redirect in IIS. You can effectively “redirect” from http://domain.com to http://www.domain.com. Of course the URL rewrite has many more uses and features, but we will use it for redirection purposes in this tutorial.

    To install the IIS URL Rewrite module: Go Here and click install… Or just click here. Once installed you may need to reboot.

    Install IIS URL Rewrite Module

    IIS URL Rewrite after Installation

    You can double click and make your URL rewrite rule using the interface, or edit the web.config. See below.

    IIS URL Rewrite Module

    IIS URL Rewrite code in the web.config

    IIS URL Rewrite http:// to http://www

    <!--web.config url rewrite-->
      <system.webServer>
          <rewrite>
              <rules>
                  <rule name="RedirectToWWW" stopProcessing="true">
                      <match url=".*" ignoreCase="true" />
                      <conditions>
                          <add input="{HTTP_HOST}" pattern="^domain.com$" />
                      </conditions>
                      <action type="Redirect" url="http://www.domain.com/{R:0}" redirectType="Permanent" />
                  </rule>
              </rules>
          </rewrite>
      </system.webServer>

    Previous to IIS7 this was handled in:

    Older IIS URL Rewrite was contained between these tags

    <system.web>
    </system.web>

    The above code can be viewed in the URL rewrite module interface. It’s illustrated below. You may add or modify in either the web.config, or this interface. The main thing is to get it installed, and most likely reboot.

    URL Rewrite Rules Interface in IIS

    url-rewrite-module-edit-in-iis[1]URL Rewrite Interface in IIS

    IIS 7 redirect using URL Rewrite

    Notice under the “Action” section in the above image there is a selection for “Action type”. Among other choices you can choose Redirect. Choose “Redirect.” Once selected there are then places for you to select “Redirect URL,” and “Redirect type,” such as “Permanent (301).”

    Search Terms:
    URL Rewrite, URL Rewrite IIS, iis 7 redirect, http://domain.com to http://www.domain.com, IIS URL Rewrite, IIS urlrewrite, URL rewriting, IIS rewrite, rewrite url, urlrewrite, URL Rewrite asp.net, url rewriting asp.net, URL Rewrite module, IIS7 URL Rewrite module, IIS rewrite url, url rewrite tutorial, url rewriting IIS, IIS url rewriting, rewrite IIS, asp url rewrite, IIS7 rewrite, asp.net rewrite url, IIS7 rewrite, IIS redirect url, rewrite url asp.net, IIS url rewrite module, asp.net url rewriting, http redirect, url redirection, IIS redirect.

  • 相关阅读:
    Centos7永久修改hostname
    centos静态绑定IP地址
    Salesforce 报表开发
    Salesforce 测试类的实践
    Salesforce Aura开发 Component组件开发实践
    Salesforce Aura 开发 Hello World开发实践
    PHP设计模式之工厂模式
    PHP设计模式之单例模式
    PHP截取带有汉字的字符串,将汉字按两个字节计算
    window下安装Apache+PHP
  • 原文地址:https://www.cnblogs.com/shuaixf/p/3414093.html
Copyright © 2011-2022 走看看