I need help with url redirection e.g.
old url http://www.example.com/sub-dir/index.php?id=1 to new url http://www.example.com/sub-dir/1/
can anyone help please I need the .htaccess code file to be in /sub-dir/ folder
Here is the code that I was trying to use:
RewriteRule ^/([0-9]+)/$ index.php?id=$1 [NC,L]
But it didn't work.