如何以及在何处将 robots.txt 文件添加到 ASP.net Web 应用程序?
我正在使用 ASP.net 和 C#。
为了提高我的网站在 Google 中的可搜索性,我搜索了 &发现我可以使用 robots.txt 来做到这一点,但我真的不知道如何创建它以及在哪里可以放置我的标签,例如 ASP.net
、C#
在我的 txt 文件中。
另外,请让我知道将其包含在我的申请中的必要步骤。
I am using ASP.net with C#.
To increase the searchability of my site in Google, I have searched & found out that I can do it by using my robots.txt, but I really don't have any idea how to create it and where can I place my tag like ASP.net
, C#
in my txt file.
Also, please let me know the necessary steps to include it in my application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
robots.txt是根文件夹中的一个文本文件,它为搜索机器人设置了一定的规则,主要是访问哪些文件夹和不访问哪些文件夹。您可以在这里阅读更多相关信息:http://www.robotstxt.org/robotstxt.html
robots.txt is a text file in the root folder that sets certain rules for the search robots, mainly which folders to access and what not. You can read more about it here: http://www.robotstxt.org/robotstxt.html
robots.txt 文件放置在您网站的根目录下,用于控制允许搜索蜘蛛进入的位置,例如,您可能不希望它们位于您的
/js
文件夹中。像往常一样,维基百科有一篇很棒的文章我想你可能会发现站点地图 更有用。这是您生成的代表站点内容的 XML 文件。然后您将其推送到主要搜索引擎。尽管由 Google 发起,但所有主要搜索引擎现在都同意遵循标准模式。
提高你的谷歌分数,以及一般的搜索引擎优化,并不是我很了解的事情。对我来说,这听起来像是一种黑魔法:) 查看 IIS SEO Toolkit 不过,它可能会提供一些提示。
The robots.txt file is placed at the root of your website and is used to control where search spiders are allowed to go, e.g., you may not want them in your
/js
folder. As usual, wikipedia has a great write upI think you may find SiteMaps more useful though. This is an XML file which you produce representing the content of your site. You then push this to the main search engines. Although started by Google all the main search engines have now agreed to follow a standard schema.
Increasing your Google score, and SEO in general, isn't something I've know much about. It sounds like a black art to me :) Check out the IIS SEO Toolkit though, it may offer some pointers.
大多数搜索引擎都会为您的网站建立索引,除非 robots.txt 告诉它不要这么做。换句话说,robots.txt 通常用于从您的网站中排除机器人。
Most search engines will index your site unless a robots.txt tells it not to. In other words, robots.txt is generally used to exclude robots from your site.