You can specify a "welcome-page" either using pages.xml or web.xml....which are you using? In your pages.xml, you can use Seam to define the welcom page with the Code:
no-conversation-view-id="home.xhtml"
property.
or you can use the jsf-ish way in web.xml similar to:-
Code:
<welcome-file-list>
<welcome-file>home.html</welcome-file>
</welcome-file-list>
Have you done either of these?