Here's what I've got so far:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !index.php
RewriteRule .* index.php?url=$0 [L]
But when I go to soemthing like /a?b=c
and then inspect the GET params, I only get a
for url
, and b
is lost. How can I retain that?