http://myfileserver/images/car/chevrolet.gif
我有这个文件服务器保存图像、文档文件等文件。现在我想拦截 http 请求并根据文件扩展名执行一些操作,例如重定向到其他网页。
完成这件事的最好和更简单的方法是什么?我正在为我的应用程序使用 asp.net 框架。
请建议该方法。
谢谢
http://myfileserver/images/car/chevrolet.gif
我有这个文件服务器保存图像、文档文件等文件。现在我想拦截 http 请求并根据文件扩展名执行一些操作,例如重定向到其他网页。
完成这件事的最好和更简单的方法是什么?我正在为我的应用程序使用 asp.net 框架。
请建议该方法。
谢谢
If you are looking to intercept the request for specific file types, then go with an Http Handler. Here is the MSDN link explaining their usage - Http Handlers