IMG-LOGO

How to redirect www to non www using URL Rewriter in Windows IIS?

andy - 03 Aug, 2016 10225 Views 0 Comment

One of the best plugin you can use to perform a redirection in Windows IIS is by installing url rewriter component. Once it has been installed you can easily copy the following code into your web.config file.

Many people wonders which one is actually redirecting www to non www or the other way around. My preference is definitely www to non www because it is shorter and less typing. If you see many of the popular site like facebook or twitter, they all use the shorter url address version.

Here is the code to perform a redirection from www to non www. Remember that you place the rewrite rules inside the system.webServer config section.

<system.webServer>
<rewrite>
	<rules>
		<rule name="Redirect to non-www" stopProcessing="true">
			<match url="(.*)" negate="false"></match>
			<action type="Redirect" url="https://bytutorial.com/{R:1}"></action>
			<conditions>
				<add input="{HTTP_HOST}" pattern="^bytutorial\.com$" negate="true"></add>
			</conditions>
		</rule>
	</rules>
</rewrite>
</system.webServer>

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles

Getting HTTP Error 500.21 - Internal Server Error

When you try to run MVC site or ASP Net framework 4 website if you receive the following error HTTP Error 500 21 Internal Server Error Saying Handler ExtensionlessUrlHandler Integrated 4 0 has a bad module ManagedPipelineHandler in its module ...

How to allow loading and downloading json file in IIS?

In order to allow loading and downloading json file on your site you have to add json extension in mime type and handler mappings in IIS windows server By default this extension is not view able Therefore you will need ...