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
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
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.)