⚡ NEW: Plugins/db robotstxt - Uncensored 2025

Bisteinoff SEO Robots.txt

Описание

Вы столкнулись с проблемой при создании и редактировании файла robots.txt на вашем сайте?

Bisteinoff SEO Robots.txt is an easy-to-use plugin that helps you generate and configure a correct robots.txt file, which is essential for search engine optimization (SEO). This file defines crawling rules for search engine bots such as Google, Bing, Yahoo!, Yandex, and others.

Плагин прекрасно работает как в том случае, если файл robots.txt никогда не создавался, так и в том случае, если он уже существует. После установки плагин создает оптимизированный файл robots.txt, который включает специальные правила, общие для веб-сайтов на WordPress. После этого вы можете продолжить дальнейшую настройку с учетом особенностей вашего веб-сайта, если это необходимо.

Если плагин обнаружит один или несколько файлов Sitemap XML, он добавит их в файл robots.txt.

FTP-доступы не требуются, не нужно писать код или редактировать файл, это делает управление настройками простым и удобным!

Key Features

  • Automatic generation of optimized robots.txt with WordPress-specific rules
  • Special rules for Google and Yandex search engines
  • Custom rules support for any search engine bot
  • Automatic sitemap detection and inclusion
  • WooCommerce compatibility with specific rules
  • Multisite support
  • Easy-to-use admin interface
  • Modern PHP architecture with namespaces for conflict-free operation

Скриншоты

  • The Settings Page.
  • Error message if a non-virtual file robots.txt exists and the functionality to fix it.
  • The message when the problem is fixed.

Установка

  1. Загрузите папку db-robotstxt в каталог /wp-content/plugins/
  2. Активируйте плагин через меню «Плагины» в WordPress
  3. The plugin will automatically create a virtual robots.txt file
  4. Go to Settings > SEO Robots.txt to customize rules

Часто задаваемые вопросы

Будет ли конфликт с существующим файлом robots.txt?

No, it will not. If the file robots.txt is found in the root folder it will not be overridden. On the Settings page you will see a notification with two options: rename or delete the existing file robots.txt. The plugin provides this functionality directly in the admin interface.

Could I accidentally block all search robots?

Once the plugin is installed it will work fine for all search engine robots. If you are not aware of the rules for fine-tuning a robots.txt it is better to leave the file as is or read first a corresponding manual to learn more about the directives used for robots.txt.

Примечание: следующие директивы заблокируют соответствующих поисковых роботов:

Disallow:
Disallow: /
Disallow: *
Disallow: /*
Disallow: */

You should use any of these directives only if you do not want any page of your website to be accessible for crawling.

Where can I read the up-to-date guide on robots.txt?

What happens when I update to version 4.0?

For regular users: Nothing changes! The plugin will automatically migrate all your settings. Everything continues to work exactly as before.

For developers: Version 4.0 introduces a complete code refactoring with modern PHP classes and namespaces. If you have custom code that references this plugin’s functions, constants, or options, please review the migration information below.

Migration to v.4.0 — Information for Developers

If you have custom code that integrates with this plugin, please note these changes:

Checking for deprecation notices: All deprecated elements will trigger _doing_it_wrong() notices when WP_DEBUG is enabled. Enable debug mode to identify any issues:
define(‘WP_DEBUG’, true);

Changed option names:
* db_robots_custom bisteinoff_plugin_robots_custom
* db_robots_custom_google bisteinoff_plugin_robots_custom_google
* db_robots_if_yandex bisteinoff_plugin_robots_enable_yandex
* db_robots_custom_yandex bisteinoff_plugin_robots_custom_yandex
* db_robots_custom_other bisteinoff_plugin_robots_custom_other

Note: Options are migrated automatically. Old option names are removed from the database after successful migration.

Changed constants:
* DB_PLUGIN_ROBOTSTXT_VERSION BISTEINOFF_PLUGIN_ROBOTS_VERSION
* DB_PLUGIN_ROBOTSTXT_DIR BISTEINOFF_PLUGIN_ROBOTS_DIR

Note: Old constants remain defined for backward compatibility.

Changed functions (now deprecated):
* publish_robots_txt() Use \Bisteinoff\Plugin\RobotsTXT\Generator::generate() instead
* db_robots_admin() Use \Bisteinoff\Plugin\RobotsTXT\Admin::add_menu_page() instead
* db_robotstxt_admin_settings() Use \Bisteinoff\Plugin\RobotsTXT\Admin::render_settings_page() instead
* db_settings_link() Use \Bisteinoff\Plugin\RobotsTXT\Loader::add_settings_link() instead

Note: Deprecated functions continue to work with backward compatibility.

Action required:
Update your custom code to use the new naming conventions. All deprecated elements will be removed after Feb 16th 2027.

Отзывы

17.09.2023
As a SEO specialist, I can say that this plugin is indispensable in everyday work. with it, I can quickly generate the desired file without unnecessary labor.it is convenient that there are different blocks for entering information for different search engines, since often different indexing rules may be relevant for different search engines.
Посмотреть все 3 отзыва

Участники и разработчики

«Bisteinoff SEO Robots.txt» — проект с открытым исходным кодом. В развитие плагина внесли свой вклад следующие участники:

Участники

«Bisteinoff SEO Robots.txt» переведён на 3 языка. Благодарим переводчиков за их работу.

Перевести «Bisteinoff SEO Robots.txt» на ваш язык.

Заинтересованы в разработке?

Посмотрите код, проверьте SVN репозиторий, или подпишитесь на журнал разработки по RSS.

Журнал изменений

4.0

  • MAJOR UPDATE: Complete code refactoring with modern PHP architecture
  • Compatible with WordPress 6.9
  • Compatible with WordPress Theme Bisteinoff 2.4+
  • Compatible with PHP 7.0 through PHP 8.4 (no deprecated PHP features used)
  • Feature: Modern PHP namespaces (Bisteinoff\Plugin) to prevent conflicts with other plugins
  • Feature: Seamless integration with Bisteinoff WordPress themes and plugins
  • Feature: Efficient class-based architecture with lazy loading
  • Feature: Automatic migration system for settings and options
  • Fix: Undefined variable warnings for $db_renamed and $db_deleted
  • Backward Compatibility: All old function names preserved until at least February 16, 2027
  • Backward Compatibility: Old constant names (DB_PLUGIN_ROBOTSTXT_*) preserved
  • Backward Compatibility: Options automatically migrated from old to new names
  • For Developers: See FAQ section «Migration to v.4.0» for detailed technical information