url rewriting using .htaccess in php

58 Views Asked by At

I want to change my vendor profile daynamic URL

Right now i have this type of URL that generated from back-end when i add new vendor. http://www.greatyogaplace.com/yoga-school-profile.php?id=20&category=92

but i want to like http://www.greatyogaplace.com/yoga-school-profile/vendorename

If anyone know plzz. help me.

1

There are 1 best solutions below

1
On

Well, Here you need to have vendorname in the URL:

RewriteRule ^yoga-school-profile/(.*) yoga-school-profile.php?vendorname=$1

currently only id and category id is in the URL, so you need to update yoga-school-profile.php in order to achieve desired functionality