Manual:$wgDefaultRobotPolicy/pt
Appearance
| Robot policies: $wgDefaultRobotPolicy | |
|---|---|
| Allows specifying the default robot policy for all pages on the wiki |
|
| Introduzido na versão: | 1.12.0 (r30602) |
| Removido na versão: | Ainda em utilização |
| Valores permitidos: | (text string appropriate for a "robots" meta tag) |
| Valor predefinido: | 'index,follow' |
| Outras definições: Alfabeticamente | Por função | |
Details
This configuration parameter allows specifying the default robot policy for all pages on the wiki. The default is to encourage link indexing and following. This can be overridden on a per-namespace and/or per-article basis.
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'
];
Ver também
External link
- About the Robots <META> tag (www.robotstxt.org)