「Short URL」の版間の差分
(ページの作成:「[https://www.mediawiki.org/wiki/Manual:Short_URL 公式のやり方]も説明されているけど、結構複雑なので[http://kw-note.com/cms/mediawiki-shorturl/ Medi...」) |
(相違点なし)
|
2014年12月23日 (火) 03:03時点における版
公式のやり方も説明されているけど、結構複雑なので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]