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:
 

Bu cevap yeterince yardımcı oldu mu?

 Bu dökümanı yazdır

Also Read

Multiple Windows hosting accounts and logging into Plesk

If you have multiple Windows hosting plans with us, when logging into Plesk, you need to login...

How to backup MSSQL database

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

Plesk says ASP.NET 4.0, but I need 4.5

It's because 4.5 is simply an update of 4.0, therefore in Plesk the version appears as 4.0...

What to use for MSSQL database connection string?

Please use following connection string syntax for connecting MSSQL DB from your ASP/.NET...

Connecting to my database remotely?

Remote database connections to MySQL/MSSQL are not supported on our shared/reseller hosting...