mvc 如何设置robots.txt (路由设置问题)

时间:2021-09-09 04:03:34
我参考了

MVC3设置方法

但是设置出来并不能实现 

我访问 http://localhost/robots.txt

HTTP 错误 404.0 - Not Found

请教到底要如何设置呢?

3 个解决方案

#1


求解惑...

#2


 system.webServer  handlers下添加
  <add name="RobotsTxt" path="robots.txt" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" /> 

#3


引用 2 楼 zhuankeshumo 的回复:
 system.webServer  handlers下添加
  <add name="RobotsTxt" path="robots.txt" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" /> 


非常感谢,webconfig里面的配置一直都是一知半解...不知道哪里有完整一点的说明

#1


求解惑...

#2


 system.webServer  handlers下添加
  <add name="RobotsTxt" path="robots.txt" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" /> 

#3


引用 2 楼 zhuankeshumo 的回复:
 system.webServer  handlers下添加
  <add name="RobotsTxt" path="robots.txt" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" /> 


非常感谢,webconfig里面的配置一直都是一知半解...不知道哪里有完整一点的说明