apache - htaccess simple redirect without changing URL -


i'm trying redirect people go site want not show in url.

http://www.example.com/ -> http://www.example.com/dev/

except /dev part shows in url when redirection takes place, how hide stays http://www.example.com/? here's htaccess file..

rewritebase /  <ifmodule mod_rewrite.c>     rewriteengine on     rewriterule    ^$    dev/index.php    [l]  </ifmodule> 

any appreciated, thanks.


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

visual studio 2010 - Connect to informix database windows form application -

android - Associate same looper with different threads -