2014-12-02 79 views
1

我有一個維基在example.com上運行。 當你轉到頁面鏈接在URL中更改爲/index.php/Main_Page.htaccess在mediawiki不能正常工作

我不想在主頁面之後的部分。也想在我的Localsettings在我.htaccess

rewriteEngine On 
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^/(.*)$ wiki/index.php?title=$1 [PT,L,QSA] 
RewriteRule ^/*$ wiki/index.php [L,QSA] 
RewriteRule ^$ wiki/index.php [L,QSA] 

在index.php出

我有這個目前這個。

$wgScriptPath  = "/w"; 
$wgArticlePath = "/wiki/$1"; 

我的錯誤在哪裏?我無法弄清楚......我跟着mediawiki到了T.

回答