不知道以前有没有写过啊,算了不管了
该规则只适用于安装在网站根目录的情况。
对nginx的rewrite文件写入如下内容
location ~ ^\/.+$ {if ($request_uri ~ ^/images) { break; }if ($request_uri ~ ^/resources) { break; }if ($request_uri ~ ^/index\.php) { break; }rewrite ^/(.+)$ /index.php?title=$1 last;}
随后在LocalSettings.php中寻找
$wgScriptPath = "";
找到后在下面添加以下内容:
$wgArticlePath = "$wgScriptPath/$1";
重启Nginx。