28
Apr
Posted by liubin as 技术
| 1,182 Views
因为使用虚拟服务器,不能修改apache的配置文件,一般的url rewrite都需要.htaccess文件。
mediawiki的话,简单的步骤如下
1. 在LocalSettings.php中设置$wgArticlePath = “/wiki/$1″;
2.在wiki的根目录中放置含有如下内容的.htaccess文件
- RewriteEngine on
- # 取消下一行的注释#号,如果你期望输入主域名oracle.nanshapo.com/时直接转到oracle.nanshapo.com/wiki/Main_Page
- # RewriteRule ^/$ /wiki/Main_Page [R]
- RewriteRule ^wiki/(.*)$ /index.php?title=$1 [L,QSA]
可以访问oracle.nanshapo.com来看看
Related posts for the current post: