I\'ve implemented Short URL for my mediawiki and I have these in htaccess that works:
RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/w/index.php [L]
RewriteCon
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.