how do I know what version of IIS7 URL Rewrite module is installed

Viewed 25724

I created a rewrite rule in IIS7 that uses the trackAllCaptures="false" attribute in the conditions element and uses outboundRules. All works fine on my test system however when I deploy these rules to GoDaddy I get the error:

Unrecognized attribute 'trackAllCaptures' 

And if I include the outboundRules node I get a 500 error from the server. I spoke with their support and they insist that they have support for the 2.0 version of the URL Rewrite module. My question is how do I verify or communicate to them how to check the version of this module? I can't find a way anywhere short of attempting to install it on how to check the version.

I'm attempting to rewrite URL's for an ASP.Net application not WordPress in order to remove the sub-folder from the URL this is a very prevalent issue in their multi-domain hosting. The sample I am using is located here: http://weblogs.asp.net/owscott/archive/2010/05/26/url-rewrite-multiple-domains-under-one-site-part-ii.aspx

2 Answers

For sure @Kev Answer helped me to identify the version, but it seems there is a alternative to that. I was just checking the control panel > installed programs. There I found version install. If it is installed then you check the version and compare with @Kev answer to know whether it is version 1 or 2

Control panel Url Rewrite Module Image

Related