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:
 

Was dit antwoord nuttig?

 Print dit artikel

Lees ook

Changing folder permissions in Plesk

From the Plesk panel, go to "Websites & Domains" and then "File Manager".   To the...

Import a MySQL or MSSQL database on Windows hosting

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

Where do I upload my website on Windows Hosting?

On our Windows Hosting plans, your website should be uploaded to your httpdocs folder.

How to backup MSSQL database

How to (export) MSSQL Database in Reseller Account To export MSSQL Database. If you are...

How do I connect via RDP on my Windows VPS?

Windows Firewall is active by default, so RDP access will first need to allowed in the firewall...