Extension:NamespacePaths
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
NamespacePaths Release status: unmaintained |
|
---|---|
Description | Allows custom article paths to be mapped to namespaces of the wiki |
Author(s) | Daniel Friesen @ Redwerks (Dantmantalk) |
Latest version | 1.1.0 (2017-10-30) |
MediaWiki | 1.23+ |
PHP | 5.4+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | |
$wgNamespacePaths |
|
Translate the NamespacePaths extension if it is available at translatewiki.net | |
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
.
InstallationEdit
- Download and place the file(s) in a directory called
NamespacePaths
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php:
require_once "$IP/extensions/NamespacePaths/NamespacePaths.php";
- 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". - 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 setsREQUEST_URI
correctly the extension will take it from there and extract the correct title on it's own.
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.