-5

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

  • 1
    See this thread [link](http://stackoverflow.com/questions/812571/how-to-create-friendly-url-in-php) – bedna May 08 '14 at 13:00

1 Answers1

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