Forum Moderators: open
<frameset rows="100%,*" frameborder="NO" border="0" framespacing="0">
<frame name="frame_my_index" scrolling="YES" noresize src="index.html">
<frame name="blank_frame" src="blank.htm">
</frameset>
<noframes><body bgcolor="#FFFFFF">
<h1>GEEZ!</h1>
<p>What browser ARE you using?</p>
</body></noframes>
</html>
Edited by: rcjordan
DirectoryIndex anypage.html
In your case it would be
DirectoryIndex firstpage.html
DirectoryIndex index.html index.htm firstpage.html
Create the .htaccess file with the above line in it using a text editor, then upload it to your web root directory with your FTP client set to ASCII or text mode.
Once you have done that, you can use either index.html or index.htm or firstpage.html as your default page.
This way, when www.yourdomain.com is entered, the server will search for a page named index.html if it doesn't find it it will look for index.htm and if it doesn't find that it will search for firstpage.html and display whichever it finds as the default page.
[added]Looks like I was too slow on the draw - good one Froggyman:)[/added]