Sorry if I posted in the wrong forum I couldnt really find one, anyway.

I am trying to remove query strings accorss the whole site and replace them with a forward slash and if possible remove the "&" and "=" replace that with with a forward slash, now here is my current rewrite rule to remove .php extension.

I am extremely new to .htaccess and I have 0 knowledge about it, so any help would be appreciated.

Code:
Options +FollowSymLinks
Options -Multiviews
RewriteEngine On
RewriteBase /
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]