简体   繁体   中英

Simple IIS 7 Rewrite rule not working

I've seen several blogs and questions which I believe match what I'm doing, but it's not working. URL Rewrite module is installed. I'm resetting IIS after I save this web.config file. I've tried using IIS's GUI as well with same results. Is there something else I'm not aware of?

  <rewrite>
      <rules>
          <rule name="Redirect domain.com to www" patternSyntax="ECMAScript" stopProcessing="true">
              <match url=".*" />
              <conditions>
                  <add input="{HTTP_HOST}" pattern="^domain.us$" />
              </conditions>
              <action type="Redirect" url="http://www.domain.us/{R:0}" />
          </rule>
      </rules>
  </rewrite>

Ok, I forgot to add the binding domain.us to the site. Woops!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM