.htaccess - Mod rewrite error -


i'm facing issue in rewriting url. have tried top results mod rewrite generator sites google none of them have solved issue.

my current url is:

http://localhost/detail.php?uri=short-link&id=12

i want make it:

http://localhost/detial/short-link-12

my current .htaccess

rewriteengine on rewriterule ^detail/([^-]*)-([^-]*)$ detail.php?uri=$1&id=$2 [l] 

thanks @markshevchenko pointing me in right direction.

solution:

rewriterule ^detail\/(.*)-(\d+)$ detail.php?uri=$1&id=$2 [l] 

Comments