Brion Vibber [Thu, Sep 02, 2004 at 03:16:22PM -0700]:
+ Saurav Pathak wrote: + >i have nearly got it to work, except search is not working. + [snip] + ># Rewrite any article as wiki/index.php/article and stop + >RewriteRule ^(.*)$ index.php?title=$1 [L] + + Use the QSA (query string append) option.
RewriteRule ^(.*)$ index.php?title=$1 [L,QSA]
everything works now. thanks.