如果routes.IgnoreRoute(“{resource}.axd/{*pathInfo}”);是强制性的,为什么不通过 IIS 设置一次?
我注意到每当我们创建 MVC 应用程序时总是会设置 routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
。
如果这是强制性的事情,为什么我们不通过 IIS 设置一次而不是一次又一次地设置它呢?
I notice routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
is always setup whenever we create MVC applications.
If it is a mandatory thing, why don't we setup it once through IIS settings rather than doing it again and again ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有人说这是“强制性的”。不过,默认情况下在那里是非常有意义的。如果您不想要它,您可以将其删除。
Nobody said it was 'mandatory'. It makes excellent sense to be there by default, though. And if you don't want it, you can remove it.