「Short URL」の版間の差分
(ページの作成:「[https://www.mediawiki.org/wiki/Manual:Short_URL 公式のやり方]も説明されているけど、結構複雑なので[http://kw-note.com/cms/mediawiki-shorturl/ Medi...」) |
|||
20行目: | 20行目: | ||
RewriteRule ^(.+)$ index.php?title=$1 [L,QSA] | RewriteRule ^(.+)$ index.php?title=$1 [L,QSA] | ||
</pre> | </pre> | ||
+ | |||
+ | [[Category:技術]] | ||
+ | [[Category:MediaWiki]] |
2014年12月23日 (火) 03:04時点における最新版
公式のやり方も説明されているけど、結構複雑なので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]