Home >Backend Development >PHP Tutorial >iis php web.config处理404,500等,跳转友好页面,显示500错误信息

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-23 13:41:241033browse

显示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"></add>            </files>        </defaultdocument></system.webserver></configuration>


404,500友好提示跳转

<?xml version="1.0" encoding="UTF-8"?><configuration>    <system.webserver>       <httperrors errormode="DetailedLocalOnly"><remove statuscode="404"></remove><error statuscode="404" path="/404.htm" responsemode="ExecuteURL"></error><remove statuscode="500"></remove><error statuscode="500" path="/500.htm" responsemode="ExecuteURL"></error></httperrors>            <defaultdocument>            <files>                <add value="index.php"></add>            </files>        </defaultdocument></system.webserver></configuration>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn