配置IIS7显示详细错误信息
通过 IIS 配置
- 按住 WIN + R 打开命令行输入 inetmgr 打开 IIS 管理
- 左边目录选择目标站点,在右边 IIS 块中双击 Error Pages
- 在 Error Pages 中右边的 Actions,选择 Edit Feature Settings
- 在 Error Responses 中,选择 Detailed errors,单机 OK 完成配置。
通过命令行
启用详细错误:
%windir%\system32\inetsrv\appcmd.exe set config "Default Web Site/yourapp" /section:httpErrors /errorMode:Detailed
禁用详细错误:
%windir%\system32\inetsrv\appcmd.exe set config "Default Web Site/yourapp" /section:httpErrors /errorMode:Custom
通过 web.config 配置
其实,上面在两种配置,最终都会反应到对应的 web.config 中。因此,我们可以直接编辑 web.config。特别是对于买的虚拟主机(Shared Web Hosting),没有权限更改IIS。打开网站目录,找到 web.config 文件(如果没有,就建立一个 txt 文件存为 web.config),找到 system.webServer 配置节,添加配置 <httpErrors errorMode="DetailedLocalOnly" />。
<system.webServer>
<httpErrors errorMode="DetailedLocalOnly" />
</system.webServer>
</configuration>
注意
- 此参数选项可以应用到网站或子目录或虚拟目录。
- 此参数选项对所有 IIS 应用程序有效,包括 ASP, APS.NET, PHP 等。
如果是 ASP.NET 程序,可能还需要配置 <customErrors mode=”Off” />
1 |
<system.web> |
2 |
<customErrors mode=”Off” /> |
3 |
</system.web> |
此外,如果是 ASP 程序,还可以配置 sendErrorsToBrowser 选项:
通过 IIS 配置
- 按住 WIN + R 打开命令行输入 inetmgr 打开 IIS 管理
- 左边目录选择目标站点,在右边 IIS 块中双击 ASP
- 在 ASP 页中展开 Debugging Properties 节点
- 找到 Send Errors To Browser ,选择 true
- 右边 Actions 中,单击 Apply
通过命令行
启用:
%windir%\system32\inetsrv\appcmd set config -section:asp -scriptErrorSentToBrowser:true
禁用:
%windir%\system32\inetsrv\appcmd set config -section:asp -scriptErrorSentToBrowser:false
注意上面参数中 config 后面不能指定站点目录
其他链接:
The new Configuration System in IIS 7 http://blogs.msdn.com/carlosag/archive/2006/04/25/IIS7ConfigurationSystem.aspx
System.webServer Section Group http://msdn.microsoft.com/en-us/library/ms689429.aspx
Improve PHP Error Messages in IIS 7 http://learn.iis.net/page.aspx/765/improve-php-error-messages-in-iis-7/
Tips for Classic ASP developers on IIS7 http://blogs.iis.net/bills/archive/2007/05/21/tips-for-classic-asp-developers-on-iis7.aspx
IIS 7 父子目录同时安装 WordPress 时固定链接的问题 http://blogs.leoworks.net/php2010/2010/01/13/break-iis7-url-rewrite-rule-inheritance-for-parent-child-wordpress/
栏 目:Windows
下一篇:Windows Server 2008 R2上部署Exchange Server 2010图文教程
本文标题:配置IIS7显示详细错误信息
本文地址:http://www.codeinn.net/misctech/94899.html
阅读排行
- 1win2003 service pack2 IIS 无法复制CONVLOG.EXE CONVLOG.EX_问题处理
- 2Windows Server 2008 R2 DNS 服务器迁移方法
- 3win2008 IP安全策略关闭端口、禁止ping、修改远程连接3389端口、开放指定端口
- 4man -f/-k [keyword]在fedora 29 中报错nothing appropriate
- 5IP策略实现服务器禁止Ping
- 6win2003开机自动登录后锁定
- 7本地策略提示不能确定应用到此机器的组策略安全性设置的解决方法
- 8限制Win9X/NT系统功能二十六招
- 9windows10彻底关闭自动更新【绝对可行】
- 10win2003 3389手工修改方法