Short URL
公式のやり方も説明されているけど、結構複雑なのでMediaWikiで生成されるURLを短くする設定方法を参考にする。
LocalSettings.php
以下を追加。
$wgScript = "$wgScriptPath/index.php"; $wgRedirectScript = "$wgScriptPath/redirect.php"; $wgArticlePath = "$wgScriptPath/$1";
.htaccess
以下を追加。
RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]