I have written code in php which is like this
<a href="http://localhost/contactus.html" title="CONTACT US" > CONTACT US</a>
By right, it should go to htaccess file and see if any rewrite is there not. My .htaccess file is
RewriteRule ^([^/]+).html /index.php?file=$1 [NC]
so i suppose contactus should be $1 therefore file=contactus and it should call
http://localhost/index.php?file=contactus
But its not happening.
I checked htaccess rewrite working fine and enabled.
PLease help.Thanks