I'm struggling with (what I think should be) a fairly simple mod_rewrite task. Essentially, I need to remove the "?" in all query strings. I should note, it's a weird php app where there are only names (no values) for the query string. So, I need this:
http://mysite.com/?cheese-is-tasty
to become:
http://mysite.com/cheese-is-tasty
Just to be clear, I want the user to type in the url without the "?".
My attempts and Googling around lead me to the following .htaccess file additions:
RewriteEngine on
RewriteRule (.*) \?$1
Am I anywhere close to the right solution?