我的网站上有一些图像需要启用跨域访问,但我不想将其添加到所有图像中。我知道我可以这样做:
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
但是有没有办法将自定义标题限制为我网站上的一个文件夹?