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.

  • 相关阅读:
    python的paramiko模块简单应用
    python单线程下实现多个socket并发
    python之协程
    python之生产者消费者模型
    python进程之间修改数据[Manager]与进程池[Pool]
    python的进程间的数据交互
    vmware搭建vSAN提示磁盘不合格或者看不到磁盘的解决办法
    python之多并发socket
    OOP的几个不常用的方法
    HTTP 头和 PHP header() 函数
  • 原文地址:https://www.cnblogs.com/shuaixf/p/3414093.html
Copyright © 2011-2022 走看看