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

后端 未结 1 1131
广开言路
广开言路 2021-01-17 02:08

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         


        
相关标签:
1条回答
  • 2021-01-17 02:57

    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.

    0 讨论(0)
提交回复
热议问题