I have a problem with redirect URL in .htaccess. I want to remove .php & question marks from the URL.
For Example: www.example.com/test.php?id=12
How about this? It requires mod_rewrite.
RewriteEngine On RewriteRule ^test\/([0-9]+)$ test.php?id=$1