*'''LocalSettings.phpはこうです。'''<br />
:<code>$wgScriptPath = "/wiki";<br />:$wgScript = "$wgScriptPath/index.php";<br />:$wgRedirectScript = "$wgScriptPath/redirect.php";<br />:$wgArticlePath = "$wgScriptPath/$1";<br />
</code>
*'''.htaccessはこうです。'''<br />
<code>
:RewriteEngine on<br />:RewriteBase /wiki/<br />:RewriteCond %{REQUEST_FILENAME} !-f<br />:RewriteCond %{REQUEST_FILENAME} !-d<br />:RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]<br />
<br />
</code>