Manual:$wgDefaultRobotPolicy
Robot policies: $wgDefaultRobotPolicy | |
---|---|
Allows specifying the default robot policy for all pages on the wiki |
|
Introducido en la versión: | 1.12.0 (r30602) |
Eliminado en la versión: | aún se usa |
Valores permitidos: | (text string appropriate for a "robots" meta tag) |
Valor predeterminado: | 'index,follow' |
Otras configuraciones: Alfabéticamente | Por Función |
Detalles
This configuration parameter allows specifying the default robot policy for all pages on the wiki. The default is to encourage link indexing and following. Esto puede anular por espacio de nombres y/o por artículo.
The following example would forbid the indexing and following links on all pages outside the main namespace:
$wgDefaultRobotPolicy = 'noindex,nofollow';
$wgNamespaceRobotPolicies = [
NS_MAIN => 'index,follow'
];
Véase también
Enlace externo
- About the Robots <META> tag (www.robotstxt.org)