欧美日韩不卡合集视频_精品丝袜国产自在线拍AV_四虎永久在线精品884AA_久久国产偷任你爽任你_日韩精品无码人妻免费视频

高性能雙線全能型主機
10G光纖直入ChinaNET核心
功能強大的全實時控制中心
域名自由綁定
自由更改空間域名綁定
自由設(shè)置默認首頁
在線壓縮解壓
行業(yè)內(nèi)首家提供7秒鐘響應(yīng)服務(wù)
多服務(wù)器主機客戶群服務(wù)
軟硬件/透明防火墻三重保障
特有抗病毒內(nèi)核
7X24小時全天后客戶服務(wù)
    404錯誤頁面怎么設(shè)置
 

假如是虛構(gòu)主機中要設(shè)置404錯誤的頁面
請用動態(tài)頁面asp或PHP,多么本事精確放回404粗偶的消息,設(shè)置為html或htm返回的是200消息
在asp代碼上加入:
<%Response.Status = "404 Not Found"%>


在PHP代碼上加入:
<?php
header('HTTP/1.1 404 Not Found');
?>

就能了

如:
<?php

header('HTTP/1.1 404 Not Found');

?><html>

<head>

<META http-equiv=Content-Type content="text/html; charset=gb2312">

<meta http-equiv="refresh" content="2;URL=http://www.sv11.cn/">

<title>404 Not Found</title>

<style type="text/css">

<!--

.t {

font-family: Verdana, Arial, Helvetica, sans-serif;

color: #CC0000;

}

.c {

font-family: Verdana, Arial, Helvetica, sans-serif;

font-size: 11px;

font-weight: normal;

color: #000000;

line-height: 18px;

text-align: center;

border: 1px solid #CCCCCC;

background-color: #FFFFEC;

}

body {

background-color: #FFFFFF;

margin-top: 100px;

}

-->

</style>

</head>

<body>

<div align="center">

<h2><span class="t">404 Not Found</span></h2>

<h2><span class="t">你查找的頁面不具備或轉(zhuǎn)移請瀏覽本站首頁</h2>

<table border="0" cellpadding="8" cellspacing="0" width="460">

<tbody>

<tr>

<td class="c">The requested URL was not found on this server.</td>

</tr>

</tbody>

</table>

</div>

</body>

</html>