Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Khang Minh

    (@oddoneout)

    Unfortunately Windows server is not supported right now. I will consider this though.

    IIS you can import apache rules. I made slight changes to make it work. Works just fine – even if it’s not officially supported!
    Depending on your setup, you may have to add the server variables. I didn’t have to though.

                     <rule name="Imported Rule 1" stopProcessing="true">
                        <match url="^minify-b(\d+)-([a-zA-Z0-9-_.]+)\.(css|js)$" ignoreCase="false" />
                        <conditions logicalGrouping="MatchAll">
                            <add input="{HTTP_ACCEPT_ENCODING}" pattern="gzip" ignoreCase="false" />
                            <add input="{HTTP_CACHE_CONTROL}" pattern="no-cache" ignoreCase="false" negate="true" />
                            <add input="{HTTP_IF_MODIFIED_SINCE}" pattern="no-cache" ignoreCase="false" negate="true" />
                        </conditions>
                        <action type="Rewrite" url="/index.php?blog={R:1}&min_group={R:2}&min_type={R:3}" appendQueryString="false" />
                    </rule>
    • This reply was modified 8 years, 3 months ago by ensemblebd.
    • This reply was modified 8 years, 3 months ago by ensemblebd.
    • This reply was modified 8 years, 3 months ago by ensemblebd.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘IIS Rewrite Rules (web.config)’ is closed to new replies.