4

I have a problem with IIS: if I ask an unknown file extension, such as .flv, it doesn't serve it and displays "page not found".
I can configure it in the Mime Types, but I want to be able to specify a wildcard, like in IIS 7, where I can allow all types under "Request Filtering".

Is it possible?
Thanks!

Nir
  • 154
  • 1
  • 7

1 Answers1

1

Have you already tried using an asterisk (*) in the Extension box for a new MIME type?

Source: http://support.microsoft.com/kb/326965

iainlbc
  • 2,694
  • 19
  • 19
  • 1
    Thanks! That did the trick (extension: .*, mime type: application/octet-stream) – Nir Feb 16 '11 at 07:48