On Oct 27, 2004, at 9:34 AM, Chris Phoenix wrote:
I think my host's Apache is quite broken. [L] doesn't stop processing (but doesn't seem to hurt anything).
Weird...
The reason my directory is called "path" instead of "wiki" is that a rule of
RewriteRule ^w(.*)$ wiki/index.php$1 [L]
That's a pretty odd rule: it will match any URL starting with a 'w' and indiscriminately paste the remainder to the end of "index.php". What's it for?
When I tried to replace the final rule (with the bare w) with the rule:
RewriteRule ^w?(.*)$ wiki/index.php?$1 [L]
This will match any URL at all, whether it has a 'w' at the start or not. (The ? means 'the previous character might or might not be there'.)
-- brion vibber (brion @ pobox.com)