asp.net MVC路由问题

发布于 2024-11-29 07:22:03 字数 310 浏览 3 评论 0原文

我制作了一个网站 bulkpedia.com 在此,我使用了 ASP.NET 路由机制,

{type}/{query}

每当有包含句点的查询时,它都会向我显示 404 错误,

例如http://bulkpedia.com/web/fb.com

请帮我解决它。

提前致谢

I had made a website bulkpedia.com
In this i had use ASP.NET Routing mechanism in the way

{type}/{query}

whenever there is a query that contains a period, it shows me a 404 error

e.g. http://bulkpedia.com/web/fb.com

please help me solve it.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

中性美 2024-12-06 07:22:03

尝试将其粘贴到您的 web.config 中

<system.webServer>
  <modules runAllManagedModulesForAllRequests="True" >

  </modules>
<system.webServer>

Try sticking this in your web.config

<system.webServer>
  <modules runAllManagedModulesForAllRequests="True" >

  </modules>
<system.webServer>
嗳卜坏 2024-12-06 07:22:03

试试这个吧。

<system.webServer>     
  <modules >     
    <remove name="UrlRoutingModule-4.0" />     
    <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="" />     
    <remove name="Session"/>     
    <add name="Session" type="System.Web.SessionState.SessionStateModule" preCondition=""/>     
  </modules>     
</system.webServer>     

参考: http://www.heartysoft.com/aspnet-routing-iis7-remember -modules

如果这也不起作用,我相信这可能是您的 IIS 或其他计算机设置的问题。

Try this instead.

<system.webServer>     
  <modules >     
    <remove name="UrlRoutingModule-4.0" />     
    <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="" />     
    <remove name="Session"/>     
    <add name="Session" type="System.Web.SessionState.SessionStateModule" preCondition=""/>     
  </modules>     
</system.webServer>     

Reference: http://www.heartysoft.com/aspnet-routing-iis7-remember-modules

If this is not working either, I believe it might be your IIS or other machine setting.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文