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.
我有一些图像和 PDF 必须在托管在同一 IIS 上的不同 Web 应用程序之间共享。 我尝试通过创建一个单独的虚拟目录并在两个应用程序中使用该路径。
还有其他更好的方法吗?
如果是用于网站,是否有理由不能直接通过 http 引用它们?所以在域 1 上:
<a href="domain1/doc1.pdf">Document 1 on domain 1</a>
然后在您的第二个域(域 2)上:
<a href="domain1/doc1.pdf">Document 1 on domain 2</a>
无论哪种方式,这些资源是否有这么多,以至于不单独上传到每个应用程序是值得的?这样你就不会创建依赖项。