.net 中带点的语义 url

Semantic urls with dots in .net(.net 中带点的语义 url)
本文介绍了.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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

The reference assemblies for framework .NETCore, Version=v5.0 were not found(未找到框架 .NETCore,Version=v5.0 的参考程序集)
Good-practices: How to reuse .csproj and .sln files to create your MSBuild script for CI?(良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 MSBuild 脚本?)
Run an MSBuild target only if project is actually built(仅在实际构建项目时运行 MSBuild 目标)
Build project with Microsoft.Build API(使用 Microsoft.Build API 构建项目)
Add a msbuild task that runs after building a .NET Core project in Visual Studio 2017 RC(添加在 Visual Studio 2017 RC 中构建 .NET Core 项目后运行的 msbuild 任务)
Assembly binding error when building Office add-in: quot;FindRibbonsquot; task failed unexpectedly(构建 Office 加载项时的程序集绑定错误:“FindRibbons任务意外失败)