Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
c#asp.net中的一个Web应用程序是否可以有两个或多个虚拟路径?
例如http://localhost/test1/web.aspx和http://localhost/test2/web.aspx
您可以在 iis 中打开 2 个网站,这些网站将使用来自同一目录但具有不同 URL 的相同文件。
您也可以使用 ROUTING 模块,该模块可以读取 url 并通过字符串模式将其从一个重定向到另一个。
是IIS,可以创建两个不同的虚拟站点映射到同一个物理目录。这是你想要的吗?
每个站点都将运行自己的 Web 代码副本。