My anchor is like this
<a href="http://localhost/haveg/employer?id=7003&title=the-message-title">employer</a>
And when i click the anchor i want to reach here
http://localhost/haveg/employer/7003/the-message-title
so far i have written this .htacess code
Options +FollowSymLinks
Options +Indexes
RewriteEngine on
RewriteBase /
RewriteRule ^haveg/employer/([0-9]+)/?(.*) haveg/employer.php?id=$1
which only opens the page when i type http://localhost/haveg/employer/7003/the-message-title but i want to reach here after i click the anchor.
thanks.