Ilmari Karonen wrote:
Hmm... since you're already using mod_rewrite for the secure connection stuff, why not try using it instead of Alias for the short URLs too? Something like:
RewriteRule ^wiki(/.*)?$ /w/index.php$1 [L,NS,QSA]
ought to do it.
...although, come to think of it, it might be even better to try it like this:
RewriteRule ^wiki(/(.*))?$ /w/index.php?title=$2 [L,NS,QSA]
That way, you'll avoid passing title via PATH_INFO, and any character mangling issues that might cause. (Both work just fine for me, but your Apache installation might be different. The comments in DefaultSettings.php do warn about possible problems with path info, so it might be worth checking.)