boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Redirect URL from WWW to non-WWW in IIS

Updated on     Kisan Patel

How to redirect URL from WWW to non-WWW in IIS?

Open Web.config file and add following rewrite rule:

 

<?xml version="1.0" encoding="utf-8"?>
<configuration>
...
<system.webServer>
....
<rewrite>
  <rules>
   ...
     <rule name="CanonicalHostNameRule1"> 
       <match url="(.*)" /> 
       <conditions> 
            <add input="{HTTP_HOST}" pattern="^example\.com$" negate="true" /> 
       </conditions> 
       <action type="Redirect" url="https://example.com/{R:1}" />
     </rule>
  </rules> 
</rewrite>
</system.webServer>
...
</configuration>

That’s it.


IIS

Leave a Reply