I have the folowing htaccess file:
RewriteEngine on RewriteRule ^(.*)-(.*)-(.*)$ index.php?page=$1&id=$2&im=$3
And inside the php page I have:
href="home-46-126" //Contact Us
href="home-38-129" //News
I want to know how the redirection done? What is the function that did this redirection ? How Does the website know where to go if the user clicks on "Contact Us" ?
index.phpfile... – Jon Lin Oct 14 '12 at 8:31