Guest User

Untitled

a guest
Jun 24th, 2018
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. About Applebot
  2. Learn about Applebot, the web crawler for Apple.
  3.  
  4. Applebot is the web crawler for Apple. Products like Siri and Spotlight Suggestions use Applebot. It respects customary robots.txt rules and robots meta tags, and it originates in the 17.0.0.0 net block.
  5.  
  6. Identify Applebot
  7. The user-agent string contains “Applebot” together with additional agent information. Here's an example:
  8.  
  9. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1)
  10. Customize rules for Applebot
  11. Applebot respects standard robots.txt directives that are targeted at Applebot. In this example, Applebot doesn't try to crawl documents that are under /private/ or /not-allowed/:
  12.  
  13. User-agent: Applebot # apple
  14. Disallow: /private/ # disallow this directory
  15. User-agent: * # any robot
  16. Disallow: /not-allowed/ # disallow this directory
  17. Applebot supports robots meta tags in HTML documents. To specify robots rules in meta tags, put the tags in the <head> section of the document, like this:
  18.  
  19. <html><head>
  20. <meta name="robots" content="noindex"/>
  21. ...
  22. </head>
  23. <body>...</body>
  24. </html>
  25.  
  26. Applebot also supports the following directives:
  27.  
  28. noindex: Applebot won't index this page, and it won't appear in Spotlight or Siri Suggestions.
  29. nosnippet: Appletbot won't generate a description for the page. Any suggestions to visit this URL include only the page's title.
  30. nofollow: Applebot won't follow any links on the page.
  31. none: Applebot won't index, snippet or follow links on the page, as described above.
  32. all: Applebot provides the document for suggestions and snippets the contents so that a short description of the page can appear next to a representative image. Applebot may follow links on the page to provide more suggestions.
  33. To put multiple directives in a single meta tag, use a comma-separated list or multiple meta tags. Here are some examples:
  34.  
  35. <meta name="robots" content="nosnippet, noindex”>
  36. And:
  37.  
  38. <meta name="robots" content=“noindex">
  39. <meta name="robots" content=“nosnippet">
  40. Contact us
  41. If you have questions or concerns, please contact us at applebot@apple.com.
  42.  
  43. Information about products not manufactured by Apple, or independent websites not controlled or tested by Apple, is provided without recommendation or endorsement. Apple assumes no responsibility with regard to the selection, performance, or use of third-party websites or products. Apple makes no representations regarding third-party website accuracy or reliability. Risks are inherent in the use of the Internet. Contact the vendor for additional information. Other company and product names may be trademarks of their respective owners.
  44.  
  45. Published Date:June 23, 2018
Add Comment
Please, Sign In to add comment