Apache: mod rewrite
Appearance
Gotchas
RewriteRule with question mark (?) deletes query string
If a RewriteRule contains a question mark (?), no query string is appended. Use the QSA (Query String Append) flag to force appending the query string.
RewriteRule ^wiki/(.*)$ /wiki/index.php?title=$1 [L,QSA]