URL Rewrite Outbound Rules IIS7

前端 未结 4 1646
渐次进展
渐次进展 2020-12-31 05:50

Experimenting with URL rewrites using this module, however I\'m getting the following error when attempting to hit the URL. Looked online for answers, but not sure what the

4条回答
  •  無奈伤痛
    2020-12-31 06:29

    Although disabling static and dynamic compression works nicely this method are not working with *.axd files. This files are client side resources, like js, Ajax and so on. Read more on axd files HERE.

    Because this files are compressed automatically. Read HERE more about why!

    So easier way to make them work is sending request with setting Accept-Encoding header to empty! This is possible in two ways:

    1. [BAD] changing your firefox setting HOW?
    2. [NICE] setting an inbound rule to clear Accept-Encoding in header! HOW?

提交回复
热议问题