0

我有一个使用 ImageResizer 的网站。但并非所有图像都使用调整大小,我们有一些未调整大小的图像。这些似乎内容长度为 0,并且响应标头中缺少内容类型。我们使用 AzureReader2 和 DiskCache 插件。有没有我遗漏的设置或调整。这对我来说是一项非常关键的任务,非常感谢任何反馈。

例如:

不工作:

https://www.example.com/globalassets/home-page/23491_2_2.jpg 

这工作正常:

https://www.example.com/globalassets/home-page/23491_2_2.jpg?height=1000&width=1000 

以下是我的 web.config 中的内容

<resizer>
<Clientcache minutes="720" />
<plugins>
<add name="AzureReader2" prefix="~/azure" connectionString="EPiServerAzureBlobs"/>
<add name="EPiServerBlobReaderPlugin" />
<add name="DiskCache" />
</plugins>
<licenses>
<license>

</license>
</licenses>
</resizer>
4

1 回答 1

0

EPI 服务器以有时无法正常工作的方式覆盖静态文件的处理。

你可以试试<add name="AzureReader2" vpp="true" cacheUnmodifiedFiles="true" prefix="~/azure" connectionString="EPiServerAzureBlobs"/>

有时这会强制正确处理请求。

https://imageresizing.net/docs/v4/plugins/azurereader2

于 2019-02-28T20:28:26.557 回答