Skip to content

Instantly share code, notes, and snippets.

@rainjeck
Last active June 25, 2019 09:43
Show Gist options
  • Save rainjeck/4cadf694438e69db4122d93966b4f49e to your computer and use it in GitHub Desktop.
Save rainjeck/4cadf694438e69db4122d93966b4f49e to your computer and use it in GitHub Desktop.
Robots.txt template
User-agent: *
Allow: /
Disallow: /cgi-bin # классика..
Disallow: /? # все параметры запроса на главной
Disallow: /wp- # все файлы WP: /wp-json/, /wp-includes, /wp-content/plugins
Disallow: *?s= # поиск
Disallow: *&s= # поиск
Disallow: /search # поиск
Disallow: /author/ # архив автора
Disallow: *?attachment_id= # страница вложения
Disallow: */trackback # все трекбеки
Disallow: */feed # все фиды
Disallow: */embed # все встраивания
Disallow: */page/ # все виды пагинации
Allow: /archives/* # открываем content
Allow: */uploads # открываем uploads
Allow: /*/*.js # внутри /wp- (/*/ - для приоритета)
Allow: /*/*.css # внутри /wp- (/*/ - для приоритета)
Allow: /wp-*.png # картинки в плагинах, cache папке и т.д.
Allow: /wp-*.jpg # картинки в плагинах, cache папке и т.д.
Allow: /wp-*.jpeg # картинки в плагинах, cache папке и т.д.
Allow: /wp-*.gif # картинки в плагинах, cache папке и т.д.
Crawl-delay: 3 # минимальный период времени (в секундах) между окончанием загрузки одной страницы и началом загрузки следующей для поисковых роботов
Host: https://site.com
Sitemap: https://site.com/sitemap.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment