I have the following url:
http://example.com/cars.php?category=suv?car_title=benz
I want the url to look like this:
I have the following url:
http://example.com/cars.php?category=suv?car_title=benz
I want the url to look like this:
You can use from this structure in your htaccess file:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^cars/(.*)/(.*)/?$ /car.php?category=$1&car_title=$2 [NC,L]