Mediawiki伪静态设置

来自医院百科

在LocalSettings.php中添加

$wgArticlePath = "/w/$1"; $wgUsePathInfo = true;


伪静态规则:

RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]