Mediawiki 子页链接无效的问题

添加下面的配置到 LocalSettings.php 中即可:

# Enable subpages in the main namespace
$wgNamespacesWithSubpages[NS_MAIN] = true;

# Enable subpages in the template namespace
$wgNamespacesWithSubpages[NS_TEMPLATE] = true;

参考链接Manual:$wgNamespacesWithSubpages

PS - 我的个人博客链接:Mediawiki 子页链接无效的问题

猜你喜欢

转载自www.cnblogs.com/feiffy/p/10847419.html