1,377
回編集
差分
→システム関連
*MediaWikiで生成されるURLを短くする設定方法
<code>
LocalSettings.phpはこうです。<br />
$wgScriptPath = "/wiki";<br />
$wgRedirectScript = "$wgScriptPath/redirect.php";<br />
$wgArticlePath = "$wgScriptPath/$1";<br />
</code>
<br />
<code>
.htaccessはこうです。<br />
RewriteEngine on<br />
RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]<br />
<br />
</code>