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:
 

هل كانت المقالة مفيدة ؟

 طباعة

اقرأ أيضاً :

How do I publish using Web Deploy?

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

What is the physical file path for my account?

The physical path to your account would be:   C:\inetpub\vhosts\your_username\   Replace...

Enabling HTTP Compression In Windows Hosting

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

Changing folder permissions in Plesk

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

Configuring Outlook and other email clients on Windows hosting?

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