2

I have a query in my site

myexample.com/search/?service=abc&location=Dichaon-Kalan-Gdbot

How can rewrite in .htaccess to make url user friendly

myexample.com/search/abc/Dichaon-Kalan-Gdbot 
justberare
  • 1,003
  • 1
  • 9
  • 29
user5524348
  • 41
  • 1
  • 6

1 Answers1

0

Put a .htaccess file at the root for your files with the following lines:

Options +FollowSymlinks

RewriteEngine On

RewriteRule ^/search/abc/([a-zA-Z0-9_\ \-\'éèàùûêâôë]*)$ /search/?service=abc&location=$1
justberare
  • 1,003
  • 1
  • 9
  • 29