Semantic urls with dots in .net(.net 中带点的语义 url)
问题描述
我正在尝试为搜索页面创建语义 url,但如果有人使用点中完成的搜索,.net 引擎会返回 404.
I'm trying to make semantic urls for search pages, but if someone use a search finished in dot, the .net engine return a 404.
请求甚至没有到达路由引擎,所以我认为它与安全或类似的东西有关.
The request don't even get to the routing engine, so i think its something related to security or something like that.
例如,stackoverflow 路由在这些情况下也不起作用:https://stackoverflow.com/questions/标记/等.
For example, the stackoverflow routes also don't work in these case: https://stackoverflow.com/questions/tagged/etc.
推荐答案
如果你使用的是 .NET 4.0 和 IIS 7+,你可以在你的 web.config 的 system.web 部分设置这个标志,它将被允许:
If you are using .NET 4.0 and IIS 7+, you can set this flag in the system.web section of your web.config and it will be allowed:
<httpRuntime relaxedUrlToFileSystemMapping="true" />
我已经对其进行了测试,并且可以正常工作.Haack 对此有解释.
I've tested it and it works. Haack has an explanation of it.
这篇关于.net 中带点的语义 url的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.net 中带点的语义 url


基础教程推荐
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01