php - Update url with htaccess -


i want change formatting of url:

~/index.php/user/category_grid/?id=4&name=%27door%20knobs%27 

to

~/index.php/user/category_grid/4/door knob 

how can accomplish this?

here example of rewrite rule transform url

rewriterule index.php/user/category_grid/([-\w]+)/([-\w]+)/?$   index.php/user/category_grid?id=$1&name=$2 [l]           

Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -