我有一个 HttpHandler,在 system.webServer/handlers 中注册了它(也在 system.web/httpHandlers forr IIS6 中)
<add name="AttachmentHandler" verb="*" path="Attachment.ashx" type="AttachmentHandler"/>
它可以工作,但是,我们希望将扩展名更改为“Attachment.get”之类的其他内容,以便我们可以过滤掉 .get 扩展名,以免对其运行加密(因为它会破坏我们的下载)。
每当我将扩展名更改为 aspx、ashx 或通常的嫌疑人以外的其他内容时,我都会收到 404!
我忘记了什么?