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:
 

Hasznosnak találta ezt a választ?

 Kinyomtatja ezt a cikket

Olvassa el is

Can I run a WCF on my shared or reseller hosting plan?

Sorry, no. Running a WCF is not permitted on our shared or reseller hosting plans.We suggest one...

Enabling HTTP Compression In Windows Hosting

In your web.config file, add the following line of code to enable HTTP...

DSNless connection string

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

Connecting to my database remotely?

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