: How do I use htaccess to make a short URL to a MediaWiki page? I'd like to rewrite /liam to /index.php/Liam_Edwards-Playne. I've currently written this below in the appropriate .htaccess file
I'd like to rewrite /liam to /index.php/Liam_Edwards-Playne. I've currently written this below in the appropriate .htaccess file but it is still returning a 404:
RewriteEngine On
RewriteRule ^/liam$ %{DOCUMENT_ROOT}/index.php/Liam_Edwards-Playne [NC,L]
More posts by @Dunderdale272
1 Comments
Sorted by latest first Latest Oldest Best
You shouldn't need the DOCUMENT_ROOT variable. Simply doing:
RewriteRule ^liam$ /index.php/Liam_Edwards-Playne [NC,L]
is sufficient for mod_rewrite
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.