It's a longshot, but I'm hoping to find a simple workaround for a bizarre bug that only manifests when the query string is omitted/inferred by the application.
Before I dig deep into a thousand lines of minified 3rd party javascript, I'd like to find out if I can just auto apply the querystring using mod_rewrite.
RewriteRule ^index\.php$ index.php?module=Home&action=index
Now, this would work fine except sometimes all the data will be POSTed so I need a RewriteCond
so the rule will only fire on GET
requests, and not POST
requests.
Is this possible?