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.

  • 相关阅读:
    Flex4中panel拖拽
    jquery两边飘浮的对联广告
    javascript 无刷新上传图片之原理
    第十二周--servlet做一个逻辑处理!!!!!!!!!!!!!实现登录
    第十一周--邮件系统补充一个注册一个登陆验证码
    第十周--邮件系统全套(第二版)
    第九周--邮件系统2(全套增删改查)
    第八周-邮件系统1
    第七周JSP增删改查
    JSP第六周 还是session
  • 原文地址:https://www.cnblogs.com/shuaixf/p/3414093.html
Copyright © 2011-2022 走看看