gpt4 book ai didi

asp.net-mvc - ASP.NET MVC 中包含 "con"时出现奇怪的 404 错误

转载 作者:行者123 更新时间:2023-12-04 00:42:39 26 4
gpt4 key购买 nike

我正在处理我维护的 MVC 应用程序上的一些爬网错误,发现一个看起来应该有效的 URL 的 404 错误。

URL 格式为:/gifts/{categoryName}/{productName}/{productId}/
出于某种原因,当 productName 设置为值“con”时,我只会收到 404 错误。任何其他值(不同或相同长度的字符串),它似乎工作正常。

有没有人见过这样的事情?

最佳答案

con是保留字,因此不能放在 MVC 路由中

您需要将以下内容添加到您的 web.config:

<configuration>
<system.web>
<httpRuntime relaxedUrlToFileSystemMapping="true"/>

<!-- ... your other settings ... -->
</system.web>
</configuration>

有关更多信息,请参阅这篇文章:

Putting the Con (COM1, LPT1, NUL, etc.) Back in your URLs

关于asp.net-mvc - ASP.NET MVC 中包含 "con"时出现奇怪的 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10301736/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com