There has to be a SiteDefinion.config file in the App_Config/Include folder, which is not avilable by default.
Lets say, the sitecore instance name is democore and you have to develop a website - mysite.
And your content tree may be structured as :
Sitecore > Content > MySite > (home, about, contact etc)
This config file will have the following configuration
<configuration xmlns:patch="www.sitecore.net/.../">
<sitecore>
<sites>
<site patch:before="*[@name='website']"
name="/"
hostname="democore"
virtualfolder="/"
physicalfolder="/"
rootpath="/sitecore/content/"
mediapath="/sitecore/media library/mysite/"
startitem="/home"
loginpage="/login"
database="web"
domain="extranet"
allowdebug="false"
cachehtml="false"
htmlcachesize="10MB"
registrycachesize="0"
viewstatecachesize="0"
xslcachesize="5MB"
filtereditemscachesize="2MB"
enablepreview="true"
enablewebedit="true"
enabledebugger="false"
disableclientdata="false"
language="en"
usedisplayname="true"
embedlanguage="false"
embedlanguageinmedia="true"
routesitename="mysite" />
</sites>
</sitecore>
</configuration>
You can now browse the site as democore/mysite/home