码迷,mamicode.com
首页 > Web开发 > 详细

iis php web.config处理404,500等,跳转友好页面,显示500错误信息

时间:2015-01-17 12:40:45      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:php   yii   config   错误跳转   500详细显示   

显示500错误信息
<pre name="code" class="html"><?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
 <httpErrors errorMode="DetailedLocalOnly" existingResponse="PassThrough"></httpErrors>
            <defaultDocument>
            <files>
                <add value="index.php" />
            </files>
        </defaultDocument></system.webServer>
</configuration>



404,500友好提示跳转

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>   
    <httpErrors errorMode="DetailedLocalOnly">
<remove statusCode="404"/>
<error statusCode="404" path="/404.htm" responseMode="ExecuteURL"/>
<remove statusCode="500"/>
<error statusCode="500" path="/500.htm" responseMode="ExecuteURL"/>
</httpErrors>
            <defaultDocument>
            <files>
                <add value="index.php" />
            </files>
        </defaultDocument>
</system.webServer>
</configuration>


iis php web.config处理404,500等,跳转友好页面,显示500错误信息

标签:php   yii   config   错误跳转   500详细显示   

原文地址:http://blog.csdn.net/zmsnxingchen/article/details/42804513

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!