Zoinky
Zoinky

Reputation: 5019

MVC Site Compression not working

I have done and checked the following. 1. made sure components are installed...enter image description here

  1. Made sure everything is enabled for the server in IIS enter image description here

  2. Made sure the site has modules enabled enter image description here

  3. Enabled the settings in web.config

    <system.webServer>
      <urlCompression doStaticCompression="true" doDynamicCompression="true" />
    </system.webServer>
    

My site here http://tinyurl.com/lv44hl4 according to few sites when i enter my url in it says not compressed, for example

http://tinyurl.com/nzfv9z4 (GZIP TEST SITE WITH MY URL)

Am i missing something? (using IIS8, mvc5 and .net 4.5.1)

Upvotes: 1

Views: 862

Answers (1)

rism
rism

Reputation: 12132

Ctrl-Shift-I will open developer tools in Google Chrome. According to that your content is compressed via gzip.

GZIPED

Upvotes: 1

Related Questions