Say I've a website www.mywebsite.com. I have several pages in my web directory and those are all with .htm extension. The only page with a .php extension is the index file. Obviously in the menu on every page, there is a link to my "index.php". So whenever I go to Home page from any other page on my website, it shows "www.mywebsite.com/index.php" in the address bar. I want it to be displayed as "http://www.mywebsite.com/" only and not "http://www.mywebsite.com/index.php". How can I do that using .htaccess file. I need a simple and safe method to do it. I searched google, but there was hell lot of complex stuff to understand and to fix this minor problem, and when I tried couple of them (mod rewrite) I always got error 500.This is the structure of my .htaccess file:\[code\]Options All -Indexes<Files /scripts/proc_enq.php>Order Allow,DenyDeny from allAllow from 127.0.0.1</Files>\[/code\]