I want to rewrite this URL:
bookingstyles/search-treatment?search_service_hidden=89&service_group_id_hidden=
to give something like this:
/bookingstyles/search-treatment/89/
I have tried using this .htaccess rule:
RewriteEngine On
RewriteRule /([0-9]+)/([0-9]+)/$ http://localhost/bookingstyles/search-treatment.php?search_service_hidden=$1&service_group_id_hidden=$2 [L]
But I am still getting the same old URL.