我们正在构建一个使用表单身份验证保护的 Web 应用程序。在某个页面上,我们有一个缩略图列表。这些缩略图是使用 ImageResizer 生成的,如下所示:
<img src="/Data/Pictures/image01.jpg?width=100" />
在使用 Visual Studio 2010 的内置 Web 服务器进行开发期间,这一切都运行良好。当我们将应用程序部署到我们的生产服务器(运行 Windows 2008 和 IIS 7.5)时,我们注意到缩略图不再工作了。当将我们的开发版本切换到 IIS Express 而不是 Cassini 时,我们遇到了同样的问题。
直接导航到
/Data/Pictures/image01.jpg
时(登录时),我们可以看到图像。直接导航到
/Data/Pictures/image01.jpg?width=100
(登录时)时,我们会收到以下错误消息:“/”应用程序中的服务器错误。
不提供此类页面。
说明:您请求的页面类型未提供服务,因为它已被明确禁止。扩展名“.jpg”可能不正确。请查看下面的 URL 并确保其拼写正确。
请求的网址: /Data/Pictures/image01.jpg
直接导航到
/Data/Pictures/image01.jpg.ashx?width=100
时(登录时),我们可以看到调整大小的图像。
该问题的解决方法是从表单身份验证中排除图片目录,如下所示:
<location path="Data/Pictures">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
现在缩略图再次可见,但我觉得这个解决方法不太正确。
我已经在 ImageResizer 的网站上提交了一张支持票,并询问为什么没有查询字符串的图像可以工作,而带有查询字符串的图像则不能。ImageResizer 的作者回复并告诉我:
因为 ImageResizer 不处理未处理的图像,所以由 IIS 处理。您需要复制规则以保护静态内容:http ://www.iis.net/ConfigReference/system.webServer/security/authorization
我已阅读该页面,并尝试将我们的身份验证和授权设置复制到<security>
内部元素,<system.webServer>
但我无法以这种方式解决它。
我们能做些什么来解决这个问题?
更新
我已将应用程序部署到我们的两台生产服务器,它们都有相同的问题。我们在 IIS Express 中的两台开发人员机器上也遇到了问题。我们的生产服务器在配置上不一定相同(我不确定这一点,但我认为必须有一些细微的差异)。所以我猜(实际上,我希望 :-))原因可以在下面的 Web.Config 文件中找到:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="MyApp.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
<section name="resizer" type="ImageResizer.ResizerSection" />
<section name="dotless" type="dotless.Core.configuration.DotlessConfigurationSectionHandler, dotless.Core" />
</configSections>
<connectionStrings>
<add name="MyAppContext" connectionString="xxx" providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<pages validateRequest="false" />
<httpRuntime requestValidationMode="2.0" />
<globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="nl-BE" uiCulture="nl-BE" />
<authentication mode="Forms">
<forms loginUrl="~/Default.aspx" timeout="480" />
</authentication>
<authorization>
<deny users="?" />
</authorization>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="Data Source=.\SQLEXPRESS; Integrated Security=True; MultipleActiveResultSets=True" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Yahoo.Yui.Compressor" publicKeyToken="f8b4b81ec75097e2" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.7.1.0" newVersion="1.7.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="AjaxMin" publicKeyToken="21ef50ce11b5d80f" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.51.4507.18296" newVersion="4.51.4507.18296" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="dotless.Core" publicKeyToken="96b446c9e63eae34" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.3.0.3" newVersion="1.3.0.3" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules>
<add name="ImageResizingModule" type="ImageResizer.InterceptModule" />
</modules>
<handlers>
<add name="dotless" path="*.less" verb="GET" type="dotless.Core.LessCssHttpHandler,dotless.Core" resourceType="File" preCondition="" />
</handlers>
</system.webServer>
<location path="Assets">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
<location path="Data/Pictures">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
<dotless minifyCss="false" cache="true" web="false" />
</configuration>