Title: JoinedUpData's Replies | WordPress.org

---

# JoinedUpData

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

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

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Minifying on IIS7.5](https://wordpress.org/support/topic/minifying-on-iis75/)
 *  [JoinedUpData](https://wordpress.org/support/users/joinedupdata/)
 * (@joinedupdata)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/minifying-on-iis75/#post-4805489)
 * I’ve just been struggling with the same issue and managed to get it to work with
   rewrite rules in the web.config. I basically copied those which KuroTsuto supplied
   the tinkered with them until I got them to work.
 * These are the rules that work for me (added before the WordPress ‘Main Rule’ 
   rule):
 *     ```
       <rule name="w3tc_rewrite_test" stopProcessing="true">
           <match url="^wp-content/cache/minify/000000/w3tc_rewrite_test" />
           <action type="Rewrite" url="wp-content/plugins/w3-total-cache/pub/minify.php?w3tc_rewrite_test=1" logRewrittenUrl="true" />
       </rule>
       <rule name="w3tc-minify-test-file" stopProcessing="true">
         <match url="wp-content/cache/minify/(.+/[X]+\.css)$"  />
         <action type="Rewrite" url="wp-content/plugins/w3-total-cache/pub/minify.php?test_file={R:1}"  />
       </rule>
       <rule name="w3tc-minify-file" stopProcessing="true">
         <match url="wp-content/cache/minify/(.+\.(css|js))$"  />
         <action type="Rewrite" url="wp-content/plugins/w3-total-cache/pub/minify.php?file={R:1}"  />
       </rule>
       ```
   

Viewing 1 replies (of 1 total)