I have the following url http://www.example.com/teams.php?team_id=12
I want this url to be http://www.example.com/teams-pavilion-boys-varsity-soccer
I have tried the following code
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^teams-([0-9a-zA-Z]+)\.html$ teams.php?team_id=$1
Please help me.
Thanks in advance