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

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

WBOY
Release: 2016-06-23 13:41:24
Original
1012 people have browsed it

显示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>
Copy after login


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>
Copy after login


source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template