I am making an ASP.NET MVC site which needs to serve a number of single page apps.
A single page app is static html, css and javascript files a folder with an index.html file and a number of folders for css, images and javascript.
I have no problem serving the single page apps from a virtual directory in an IIS server, but I would like to serve them only to authenticated users in the ASP.NET MVC solution, and therefore I am right now trying serve the index.html files from a controller method.
When I do this by loading and serving the index.html file, then I cannot figure out how to serve all the css and javascript files used by the index.html file because they are referenced by the index.html with relative paths like "css/style.css" and "js/somejavascript.js".
I am using the relative parts to make it easy to develop and debug the single page apps independently from the ASP.NET MVC solution.
So my question is basically, how can I serve static HTML files with relative urls to css and js files to only authenticated users in an ASP.NET MVC site?