Hi, I am quite new in mod rewrite. I have two pages first page name Pet.php and the second page name EditPet.php
In Pet.php there are link for example
Dog when user click, it wil go to
http://localhost/Pro/EditPet.php?ID=1
Cat when user click, it wil go to
http://localhost/Pro/EditPet.php?ID=2
Rat when user click, it wil go to
http://localhost/Pro/EditPet.php?ID=3
But when the user click I want to use mod rewrite ..... and i want the result to be like
http://localhost/Pro/EditPet.php/1
http://localhost/Pro/EditPet.php/2
http://localhost/Pro/EditPet.php/3
My problem is I don't know what should I write in .htaccess file. I tried this but
RewriteEngine on
RewriteRule ^EditPet.php?ID=$1 /EditPet/([0-9]+)$
But I still got the result like http://localhost/Pro/EditPet.php?ID=1
http://localhost/Pro/EditPet.php?ID=2
http://localhost/Pro/EditPet.php?ID=3
Anyone have any advice .....