我有一个 EpiServer 7 站点,我正在尝试将自定义 404 页面连接到该站点。
我的解决方案在本地运行时工作正常。当我部署到登台服务器(站点未上线)时,显示我的 404 页面需要 2-3 分钟。如果我登录服务器并运行相同的 URL,我会立即显示自定义 404 页面吗?
我在 web.config 中的条目是(内部):
<httpErrors errorMode="Custom" existingResponse="Replace">
<clear />
<error statusCode="404" responseMode="ExecuteURL" prefixLanguageFilePath="en" path="/system/pagenotfound/" />
</httpErrors>
有任何想法吗?