Dokuwiki - включить индексацию страниц - убрать noindex: различия между версиями

Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Перейти к:навигация, поиск
(Новая страница: «=== Dokuwiki - включить индексацию страниц - убрать noindex === # vi conf/local.php $conf['usewordblock'] = 0; $conf['relnofol...»)
 
 
Строка 7: Строка 7:
 
  $conf['indexdelay'] = 0;
 
  $conf['indexdelay'] = 0;
  
Теперь можно добавлять сайт в Google/Yandex webmaster.
+
Теперь можно добавлять сайт в Google/Yandex webmaster. <br>
  
 +
indexdelay установить на 0, чтобы отключить отложенную индексацию.
  
 
  https://www.dokuwiki.org/config:indexdelay
 
  https://www.dokuwiki.org/config:indexdelay
 +
 +
DokuWiki tries to fight wiki spam by several ways. One of them is called delayed indexing and directly influences how search engines spider your page. When enabled it will set the robots meta header accordingly to the age of a page. Only pages which were not edited for a certain time (default: 5 days) will be allowed for spidering. The idea is that the community will have removed any spam in this time. This means only a page which is considered as good by the wiki users will be added by search engines. If you have a quick community (eg. at this wiki spam usually never lasts longer than a day) or have a closed user group you may want to lower the indexdelay option or even set it to 0 for disabling delayed indexing.

Текущая версия на 07:43, 31 мая 2024

Dokuwiki - включить индексацию страниц - убрать noindex

# vi conf/local.php
$conf['usewordblock'] = 0;
$conf['relnofollow'] = 0;
$conf['indexdelay'] = 0;

Теперь можно добавлять сайт в Google/Yandex webmaster.

indexdelay установить на 0, чтобы отключить отложенную индексацию.
https://www.dokuwiki.org/config:indexdelay
DokuWiki tries to fight wiki spam by several ways. One of them is called delayed indexing and directly influences how search engines spider your page. When enabled it will set the robots meta header accordingly to the age of a page. Only pages which were not edited for a certain time (default: 5 days) will be allowed for spidering. The idea is that the community will have removed any spam in this time. This means only a page which is considered as good by the wiki users will be added by search engines. If you have a quick community (eg. at this wiki spam usually never lasts longer than a day) or have a closed user group you may want to lower the indexdelay option or even set it to 0 for disabling delayed indexing.