How to redirect Mediawiki Short URL with no title to Main Page?

此生再无相见时 提交于 2019-12-01 14:32:08

This redirect rule should automatically take care of redirecting urls with no page title like /wiki/ to the wiki/Main_Page too:

RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/w/index.php [L]

It wasnt working for me before since there was other rewrite rules before this. It worked once I move this rewrite rule to the top before all other rewrite rules.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!