I have 3 Wordpress installation on my webserver, one in the root folder, 2 in sub directories (iis):
/
/wp_one
/wp_two
All of them have a web.config. If I remove the web.config from the root directory, URLs in children wp works pretty well. If I add it again, links point to the right place but when you click, I`m redirected to the correspondent page on root. For example: www.site.com/wp_one/contact redirects to www.site/contact.
web.config content (they have the same content):
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="wp" stopProcessing="true">
<match url=".*"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php"/>
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>