Please tell me how to convert this url http://www.example.com/category_listing.php?cat=Astrology&city=Jaipur into http://www.example.com/Jaipur/Astrology
Asked
Active
Viewed 132 times
-5
-
1See this thread [link](http://stackoverflow.com/questions/812571/how-to-create-friendly-url-in-php) – bedna May 08 '14 at 13:00
1 Answers
0
RewriteRule http://www.example.com/category_listing.php?cat=([a-zA-Z0-9]+)&city=([a-zA-Z0-9]+) http://www.example.com/$1/$2
Write this rewrite rule in your .htaccess file

Mohit Bumb
- 2,466
- 5
- 33
- 52