Aaron Sherman wrote:
If you visit:
http://www.ajs.com/ajswiki/Dungeons_%26_Dragons
You get a blank page for the title "Dungeons"
This is a problem with your rewrite rules. Apache unescapes the string, including the ampersand, so when you place it into the query string it counts as two separate parameters.
To avoid this you can:
1) Use an Alias directive instead of mod_rewrite; this is the simplest in most cases.
2) Use the ampescape patch to Apache (in maintenance/) to add a rewrite modifier function which can properly re-escape the ampersand.
-- brion vibber (brion @ pobox.com)