This is the htaccess I have setup for my MVC.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
</IfModule>
So any request to localhost/users/ will redirect to localhost?url=users/
But when there are some get data available in the url for example: localhost/users/?msg=hello
I'm missing the ?msg=hello in the $_GET['url']. Is it possible to redirect to something like localhost/users/msg=hello/