Using URL Rewrite on Windows Hosting



Rewrite rules should be placed in your web.config file. 
 
An example rule to redirect from non-www to www:


<rewrite>
<rules>
<rule name="Redirect domain.com to www" patternsyntax="Wildcard" stopprocessing="true">
<match url="*">
<conditions>
<add input="{HTTP_HOST}" pattern="domain.com">
</add></conditions>
<action type="Redirect" url="http://www.domain.com/{R:0}">
</action></match></rule>
</rules>
</rewrite>


For more info and examples for using URL rewrite, please see the following:
 

Hjälpte svaret dig?

 Skriv ut denna artikeln

Läs även

How do I publish using Web Deploy?

For detailed instructions for publishing using Web Deploy:...

Import a MySQL or MSSQL database on Windows hosting

Importing Databases To import an existing database: If you are subscribed to several...

Configuring Outlook and other email clients on Windows hosting?

Standard POP3 Configuration:Account Type: POP3Incoming Mail Server: <use server hostname or IP...

Custom error pages or 404's in Plesk

Setting Up Custom Error Documents on Plesk 11 Windows   In order to setup custom error...

DSNless connection string

DSNless connection string for use with .mdb MS Access, etc.: "DRIVER={Microsoft Access Driver...