失礼しました! 現状の設定です。

【LocalSettings.php】
$wgScriptPath = "/mediawiki";
$wgScriptExtension = ".php";
$wgScript = "$wgScriptPath/index.php"; //追記
$wgRedirectScript = "$wgScriptPath/redirect.php"; //追記
$wgArticlePath = "$wgScriptPath/$1"; //追記

【.htaccess】(全て追記)
RewriteEngine on
RewriteBase /mediawiki/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]


現状の設定で下記の様な名前の置き換えはできていますが、
ディレクトリ名は変えられません。
変更前: http://ドメイン名/mediawiki/index.php?title=ページ名
変更後: http://ドメイン名/mediawiki/ページ名

以上、どうかよろしくお願いします。