php - Redirect Webpage using mod-rewrite -


i trying get:

www.exampleurl.com/shop/detail.html?id=87&name=oil-iso-46-sae-20 

to resolve to

www.exampleurl.com/shop/87/oil-iso-46-sae-20 

should not work?

rewriteengine on rewriterule ^([^/]*)/([^/]*)\.html$ /shop/detail.html?id=$1&name=$2 [l] 

i've tried adding -multiview, +followsymlinks etc.


Comments