views:

12

answers:

1

HI

i want to rewrite my home menu

http://example.com/main/ to http://example.com/main/index.php only . How can i do this using .htaccess

Thanks

+1  A: 

You should add a DirectoryIndex directive to your .htaccess file, e.g.:

DirectoryIndex index.php

though I think this should work out of the box, so there might be something else wrong. Are you sure that mod_dir is loaded properly? (Look at the output of phpinfo() and search for mod_dir, it should be there.)

Marcel Korpel
Thanks it works like a charm
vipinsahu