Is there any way to disable strict MIME type checking
in Chrome.
Actually I\'m making a JSONP request on cross domain. Its working fine on Firefox but,
In my case, I turned off X-Content-Type-Options
on nginx
then works fine. But make sure this declines your security level a little. Would be a temporally fix.
# Not work
add_header X-Content-Type-Options nosniff;
# OK (comment out)
#add_header X-Content-Type-Options nosniff;
It'll be the same for apache.
#Header set X-Content-Type-Options nosniff