This is not really a Joomla tip, but could be handy anyway.
Say you want visitors to go page “filename.html” instead of “index.html” after entering your domain…
Add this to your .htaccess:
Code:
1 | DirectoryIndex filename.html index.cgi index.pl default.htm |
DirectoryIndex filename.html index.cgi index.pl default.htm
In this example first filename.html will be opened, then index.cgi, index.pl and at last default.htm.





