Posted on: 7/29/2015 1:55:09 PM | Views : 1029

I have application that use owin with identity authentication. Can I disable authenticaion for some paths. My broblem is bundles optimisation. When it is activated all requests to "/bundles/*" paths are redirected to login page. I try this to put in my web.config file:
<location path="bundles"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </location> but not work

Go to the complete details ...