I am new to .Net and using .Net core to create simple web app. It using Razor pages for views and its static contents for now.
Here is the project structure,
I can use only .cshtml files for the navigations, like
https://localhost:44391/Home //goes to Home.cshtml
https://localhost:44391/About //goes to About.cshtml
I have a static html file and some required assets placed inside the subfolder called "Off" in Pages folder.
https://localhost:44391/Off
I know, I can use Razor page itself. But here I downloaded some third party integration and it provides this and asked me to access in the same hierarchy with html page.
May I know is this possible?


wwwrootfolder.