Se você quiser, você pode habilitar subpáginas em qualquer edição de namespace do MediaWiki $wgNamespacesWithSubpages
em LocalSettings.php
. Por exemplo:
# Enable subpages in the main namespace
$wgNamespacesWithSubpages[NS_MAIN] = true;
Se você fizer isso, Media/Wiki
será uma subpágina de "Mídia" e mostrará um link para a página pai sob o título da página (como this ):
Porpadrão,oMediaWikihabilitasubpáginasparatodososnamespaces,excetomain(ns0).
Sobreostítulosdaspáginas,o
It's not possible to use forward slashes in the title of a page from a namespace where subpages are activated, however back slashes (
\
) are treated as normal characters in subpage naming and can be used in place of forward slashes.
Veja também a documentação da variável $wgLegalTitleChars
.