Extension:NamespacePaths/zh

This page is a translated version of the page Extension:NamespacePaths and the translation is 33% complete.
MediaWiki扩展手册
NamespacePaths
发行状态: 稳定版
描述 Allows custom article paths to be mapped to namespaces of the wiki
作者 Daniel Friesen @ Redwerks (Dantman留言)
最新版本 1.2.0 (2022-10-07)
MediaWiki 1.35+
数据库更改
许可协议 GNU通用公眾授權條款2.0或更新版本
下載
$wgNamespacePaths
季度下載量 2 (Ranked 145th)
前往translatewiki.net翻譯NamespacePaths扩展

The NamespacePaths extension extends custom article paths to allow namespaces to be mapped to extra paths separate from the article path. For example mapping the help namespace to /help/$1 so pages like "Help:Contents" go to /help/Contents.

安裝

  • 下载文件,并将其放置在您extensions/文件夹中的NamespacePaths目录内。
    开发者和代码贡献人员应从Git安装扩展,输入:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/NamespacePaths
  • 将下列代码放置在您的LocalSettings.php 的底部:
    wfLoadExtension( 'NamespacePaths' );
    
  1. Configure the $wgNamespacePaths with the paths you want to use for namespaces, the key is the namespace id (you can use the NS_ constants), and the value is a $wgArticlePath style string like "/help/$1".
  2. Configure your webserver to pass the extra paths to MediaWiki. Consult the short URL documentation you set the article paths for your wiki and extend it to map the extra paths to "index.php".
Note: You don't want to try mapping things to ⁄index.php?title=$1, doing so will break the paths. If you just make sure that ⁄index.php is run for these extra article paths as long as your webserver sets REQUEST_URI correctly the extension will take it from there and extract the correct title on it's own.
  •   完成 – 在您的wiki上导航至Special:Version,以验证已成功安装扩展。

致使用MediaWiki 1.39或更早版本的用户:

上面的说明介绍的是安装此扩展的新方法,它使用wfLoadExtension()。 如果您需要在早期版本(MediaWiki 1.39和更早版本)中安装此扩展,而不是wfLoadExtension( 'NamespacePaths' );,您需要使用:

require_once "$IP/extensions/NamespacePaths/NamespacePaths.php";