I want to do nesting of one site inside SiteCore Site in IIS
I have Created One site ,One Page(/layout/Sites/Neeraj/LHome.aspx) in it and mapped it with Layout(/sitecore/content/Home/Sites/Neeraj/Home) and published the solution in SiteCore Root Site(Name :SiteCore2)
MarkUp of LHome.aspx is following :
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<p>This is Sample Layout</p>
</div>
</form>
</body>
</html>
For mapping of innersite with SiteCore Site In Folder ..I Created Neeraj.config file(path:SiteCore2\App_Config\Include)
Which is as following :
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<sites>
<site
patch:before="site[@name='service']"
inherits="website"
name="Neeraj"
hostName="Neeraj.com"
virtualFolder="/"
rootPath="/sitecore/content/Home/Sites/Neeraj"
startItem="/Home"
database="web"
domain="extranet"
disableClientData="true"
cacheHtml="true"
htmlCacheSize="10MB"
registryCacheSize="0"
viewStateCacheSize="0"
xslCacheSize="5MB" />
</sites>
</sitecore>
</configuration>
In host file I also made entry for the Site as follows :
127.0.0.1 Neeraj.com
But When I tried to Browse inner site (Neeraj.com) ...it doesnot appear on Browser
I view the Preview section of SiteCore ..it also shows Blank
I am not able to find any similar Post regarding it ....
Things I Tried :
I Refer this post : How to nest ASP.NET websites
and convert my virtual directory into application ..still no luck
2. http://sdn.sitecore.net/FAQ/Administration/Project%20in%20Virtual%20Directory.aspx
This post suggest is to remove
remove Sitecore HTTP Modules in the virtual directory’s web.config
But it dont have web config in virtual directory
Nested virtual directory or application within sitecore site, is it possible it also refers to 2nd post
Any suggestion would be helpful