I'm used to Apache/PHP where I could specify for a given domain where to look for the initial index.php file.
I'm doing a project in .Net where I have a directory structure something link
ApplicationName /Content/ -> Images stuff like that /Scripts/ /WebPages/
When I start the application, it gives me the above directory structure, but the actual starting place for the website is within the WebPages directory, a default.aspx page.
I didn't realize this was an issue until I started linking pages together and realized I didn't want to be including the /WebPages/ directory in the URL obv. somedomain.com/WebPages/somepasge.aspx.
Coming from Apache, what I'm looking for is a way to tell .Net where the root folder for the actual web directory is, which will be honored for relative links. I could move all of my files in the /WebPagse/ directory down, but I'd rather keep those separate in terms of making the directory structure pleasant and my OCD at bay.
Summary
Current Page Example...
example_domain.com/WebPages/SubDirectory/Subpage.aspx
Ideally would be linked via...
<a href='/SubDirectory/Subpage.aspx'>Some page</a>