javascript - hide url path from address bar -
is there way (using javascript, php or html) hide url address bar?
for example have:
www.mysite.it/public/network.php
and want only
www.mysite.it/public/ or www.mysite.it/public/#
my site written in php.
is there way (using javascript , php or html) hide url path address bar?
no, can create .htaccess file:
rewritebase / rewriteengine on rewriterule ^public/$ public/network.php [l]
Comments
Post a Comment