作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的问题:
是否可以从 .asp 页面发送 Response.Status = "404 Not Found",但继续呈现实际页面?
似乎当我发送 Response.Status = "404 Not Found"时,IIS 移动到默认的 404 错误页面,而我想继续呈现我的页面。这是 CMS 的一种情况,出于某种原因,某人可以键入不存在的永久链接并希望显示“OPS 未找到内容页面”,而不是重定向到自定义或默认 404 asp 页面。
有特定的 web.config 设置吗?
我关注了这里的讨论:
Configuring custom ASP 404 page with redirect for IIS7 website
并考虑使用 then 选项
<httpErrors existingResponse="PassThrough" />
<?xml version="1.0" encoding="UTF-8"?>
<httpErrors errorMode="DetailedLocalOnly"/>
<urlCompression doDynamicCompression="true" doStaticCompression="true" dynamicCompressionBeforeCache="true" />
<caching enabled="true">
<profiles>
<add extension=".gif" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".png" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".js" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".css" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".jpg" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".jpeg" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
</profiles>
</caching>
<staticContent>
<remove fileExtension=".js" />
<mimeMap fileExtension=".js" mimeType="text/javascript" />
<remove fileExtension=".eot" />
<remove fileExtension=".ttf" />
<remove fileExtension=".otf"/>
<remove fileExtension=".woff"/>
<remove fileExtension=".woff2"/>
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
<mimeMap fileExtension=".ttf" mimeType="font/ttf" />
<mimeMap fileExtension=".otf" mimeType="font/otf" />
<mimeMap fileExtension=".woff" mimeType="font/x-woff" />
<mimeMap fileExtension=".woff2" mimeType="font/x-woff2" />
<clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="30.00:00:00" />
</staticContent>
<rewrite>
<rules>
<rule name="Rewrite to friendly URL">
<match url="^site/([_0-9a-z-]+)" />
<action type="Rewrite" url="/default.asp?pl={R:1}" />
</rule>
</rules>
</rewrite>
<httpErrors errorMode="DetailedLocalOnly" existingResponse="PassThrough"/>
最佳答案
也许这只是你的 web.config 中的一个错字。如果上面是你的配置文件,你忘记输入system.webServer
标签级别。
我在 IIS 8.5 上对此进行了测试,它按预期工作。所以生成的ASP
页面返回 404 状态代码时显示内容。我真的只使用了以下配置:
<configuration>
<system.webServer>
<httpErrors existingResponse="PassThrough" />
</system.webServer>
</configuration>
<configuration>
<system.web>
<customErrors mode="Off" />
</system.web>
<system.webServer>
<httpErrors errorMode="Detailed" />
</system.webServer>
</configuration>
关于iis - 发送 Response.Status = "404 Not Found"但让 IIS 保持在同一页面上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40555496/
我是一名优秀的程序员,十分优秀!