如mediawiki安装在wiki目录下,欲以“http://url/w/条目”的形式访问,则:
1. 在中设置:
$wgScriptPath = “/wiki”;
$wgArticlePath = “/w/$1″;
$wgUsePathInfo = true;
$wgScriptExtension = “.php”;
(或 $wgScriptExtension = “.php5″; ,根据实际情况)

2. 在网站根目录设置.htaccess
RewriteEngine on
RewriteRule ^w/?(.*)$ /wiki/index.php?title=$1 [L,QSA]

相关文章:

  • 2021-09-19
  • 2021-08-07
  • 2021-11-27
  • 2021-09-17
  • 2018-03-15
  • 2021-10-20
  • 2021-11-17
  • 2021-11-13
猜你喜欢
  • 2021-11-24
  • 2021-09-19
  • 2021-09-19
  • 2021-10-30
  • 2021-10-14
  • 2021-10-20
  • 2021-09-11
  • 2021-09-11
相关资源
相似解决方案