是否可以在 IIS 5 中使用 Castle MonoRail 路由功能?
我是否必须使用 IIS 6 或更高版本才能使用 Castle MonoRail 路由功能?
我知道 casini 可以工作,但实际上我们不会用 casini 部署 Web 应用程序,不是吗?
Do I have to go with IIS 6 or higher to use Castle MonoRail Routing feature?
I know casini work but practically we not gonna deploy web app with casini, or do we?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常所需的配置更改是使所有文件扩展名的请求都经过 ASP.net 过滤器(您可以在 IIS 中检查 .aspx 扩展名的配置)。
但是,对于特定虚拟目录(而不是该目录中的特定文件)的请求,IIS 会在传递请求之前尝试验证目录是否存在。 为了解决这个问题,人们通常编写一个 ISAPI 过滤器来拦截对目录的请求,或者将所有以 .mr 结尾的请求映射到 ASP.net 引擎,并调整其 url 呈现策略。
Usually the configuration change required is to make requests for all file extensions go through the ASP.net filter (you can check the configuration for the .aspx extension in IIS).
However, for requests for a particular virtual directory, rather than a specific file in that directory, IIS tries to validate that a directory exists before passing through the requests. To work around that, people usually write an ISAPI filter to intercept requests for directories, or map all requests ending in, say, .mr, to the ASP.net engine, and adjust their url presentation strategy.