url rewriting in php on xampp server -
i've trying out url rewriting php script on xampp server. first created .htaccess on same folder script , wrote following lines in it
rewriteengine on # turn on rewriting engine rewriterule ^direct/?$ direct_name_here.php [nc,l]
to rewrite localhost/map/direct_here123.php localhost/map/direct/
but browser displays url localhost/map/direct_here123.php instead of localhost/map/direct/
how can fix it?
regards ed
Comments
Post a Comment