asp.net - My subdomain .NET project is not directing to my startup file -


my wedding coming , i've printed 100 invites directing guests http://wedding.mydomain.com. similar stand-alone project, i've set startup page default.aspx page demonstrated here: http://blogs.msdn.com/b/zainnab/archive/2010/12/16/set-as-start-page-vstipproj0027.aspx.

however, when directed toward http://wedding.mydomain.com, 'maintenance' page. have manually go http://wedding.mydomain.com/default.aspx, desired project.

sounds might need set default document.

if have using iis7(+) windows hosting can set default document in web.config like

<configuration>    <system.webserver>       <defaultdocument enabled="true">          <files>             <add value="default.aspx" />          </files>       </defaultdocument>    </system.webserver> </configuration> 

if using plesk interface refer article: https://support.godaddy.com/help/article/6853/changing-your-windows-hosting-accounts-default-file


Comments

Popular posts from this blog

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -