mwrock / RequestReduce

Instantly makes your .net website faster by reducing the number and size of requests with almost no effort.
www.requestreduce.org
Apache License 2.0
228 stars 49 forks source link

PageFilter works on http but not https #260

Open sidefx79 opened 10 years ago

sidefx79 commented 10 years ago

I'm using a page filter to exclude a part of my site from RequestReduce processing as follows:

Registry.AddFilter(new PageFilter(x => x.HttpRequest.RawUrl.ToLower().Contains("/myzone/")));

But while this works fine when I access the site over http it still seems to serve "Reduced" content when access over https. Have I missed something obvious here?