几周前我刚刚发布了一个网站,最近我发现了几个这样的错误。
这是什么意思,必应试图爬我的网站?我能做什么来解决这个问题?

最佳答案

这个文件只会帮助Bing处理你的网站。
首先,转到:https://ssl.bing.com/webmaster/SubmitSitePage.aspx并添加您的站点。
然后会提示您下载BingSiteAuth.xml文件。将其添加到MVC项目的某个位置(可能是根文件夹),然后在Global.asax.cs方法的RegisterRoutes中添加:

routes.IgnoreRoute("BingSiteAuth.xml")

如果选择将文件添加到站点根目录以外的其他位置,请确保将路径映射到它,该路径看起来像位于根目录中,并具有:
routes.MapPageRoute("bingsiteauth",
                    "BingSiteAuth.xml",
                    "~/mysubfolder/BingSiteAuth.xml");

关于asp.net - 未找到路径'/BingSiteAuth.xml'的 Controller 或未实现IController,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8068700/

10-10 19:07