Title: BasHamer's Replies | WordPress.org

---

# BasHamer

  [  ](https://wordpress.org/support/users/bashamer/)

 *   [Profile](https://wordpress.org/support/users/bashamer/)
 *   [Topics Started](https://wordpress.org/support/users/bashamer/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bashamer/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bashamer/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bashamer/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bashamer/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bashamer/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress MU Domain Mapping] iis / windows multisite vanished after upgrade, trying to repair](https://wordpress.org/support/topic/iis-windows-multisite-vanished-after-upgrade-trying-to-repair/)
 *  Thread Starter [BasHamer](https://wordpress.org/support/users/bashamer/)
 * (@bashamer)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/iis-windows-multisite-vanished-after-upgrade-trying-to-repair/#post-4282383)
 * VICTORY
 * wow that sucked;
 * so it looks like case sensitivity is the killer, so on my mapping it went to 
   BasHamer.com vs bashamer.com
 * As I was inconsistent (omaschut.com was all ower case) I ended up with matched
   cases.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress MU Domain Mapping] iis / windows multisite vanished after upgrade, trying to repair](https://wordpress.org/support/topic/iis-windows-multisite-vanished-after-upgrade-trying-to-repair/)
 *  Thread Starter [BasHamer](https://wordpress.org/support/users/bashamer/)
 * (@bashamer)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/iis-windows-multisite-vanished-after-upgrade-trying-to-repair/#post-4282381)
 * ok, sleep helps.
 * So if you are on iss then web.config is your .htaccess equivalent.
 * Got OmaSchut.com mostly functional (my themes still exploded, and image links
   are not correctly aliased.
 * Still have 2 sets of behaviour.
 * this is my updated web.config
 *     ```
       <?xml version="1.0" encoding="UTF-8"?>
       <configuration>
           <system.webServer>
               <rewrite>
                   <rules>
                       <rule name="WordPress Rule 1" stopProcessing="true">
                           <match url="^index\.php$" ignoreCase="false" />
                           <action type="None" />
                       </rule>
                       <rule name="WordPress Rule for Files" stopProcessing="true">
                           <match url="^([_0-9a-zA-Z-]+/)?files/(.+)" ignoreCase="false" />
                           <action type="Rewrite" url="wp-includes/ms-files.php?file={R:2}" appendQueryString="false" />
                       </rule>
                       <rule name="WordPress Rule 2" stopProcessing="true">
                           <match url="^([_0-9a-zA-Z-]+/)?wp-admin$" ignoreCase="false" />
                           <action type="Redirect" url="{R:1}wp-admin/" redirectType="Permanent" />
                       </rule>
                       <rule name="WordPress Rule 3" stopProcessing="true">
                           <match url="^" ignoreCase="false" />
                           <conditions logicalGrouping="MatchAny">
                               <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" />
                               <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" />
                           </conditions>
                           <action type="None" />
                       </rule>
                       <rule name="WordPress Rule 4" stopProcessing="true">
                           <match url="^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*)" ignoreCase="false" />
                           <action type="Rewrite" url="{R:1}" />
                       </rule>
                       <rule name="WordPress Rule 5" stopProcessing="true">
                           <match url="^([_0-9a-zA-Z-]+/)?([_0-9a-zA-Z-]+/)?(.*\.php)$" ignoreCase="false" />
                           <action type="Rewrite" url="{R:1}" />
                       </rule>
                       <rule name="WordPress Rule 6" stopProcessing="true">
                           <match url="." ignoreCase="false" />
                           <action type="Rewrite" url="index.php" />
                       </rule>
                   </rules>
               </rewrite>
           </system.webServer>
       </configuration>
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)