I can do this just fine under Apache with htaccess / permissions. But at work its all M$ all the time...
I need to lock off access to any .fla files that might come up. We keep them next to the few .swf we use on some of our sites, I just want to be sure they are not being served.
Thanks!
EDIT
I should point out that I didn't think I needed to mention what code is running on this particular site, but it seems that I have to, as I have ASP classic code, which will not allow me to read a web.config file, it will just ignore it.
EDIT... EDIT
Really... nobody knows how I can do this?
I believe you need to create a handler, and map it to the System.Web.HttpForbiddenHandler in the web.config.
e.g. MDB files aren't served up by default:
edit: I think you may also need to add it as a MIME type as described in Home Boy's post.
Check the MIME extensions, Im hoping .fla is not one of those default supported content types.