I am using 7.1.1 trying to rewrite all requests for mydomain.com/chart.php?ID=1 to just mydomain.com/chart/1
I have this in my htaccess file but still not getting the results I want.
RewriteRule ^chart/(.*)$ chart.php?ID=$1 [QSA,L]
Basically trying to get tthe same thing as when going to a page created with the page builder, so I used the rewrite rule from there and changed the name of the page.
Any help would be greatly appreciated.