程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 控制iis 404出錯頁面

php 控制iis 404出錯頁面

編輯:關於PHP編程

php 控制iis 404出錯頁面,本文檔主要是講一下用php管理web站點時間在設置404無法找到的頁面時所用的控制方法哦。

php 控制iis 404出錯頁面,本文檔主要是講一下用php管理web站點時間在設置404無法找到的頁面時所用的控制方法哦。

<?
 # PHP控制站點程序
 #
 # 編寫人:韓湘子
 #
 # 郵箱:[email protected]
 #
 # MSN:[email protected]
 #
 # QQ:220670        
 #
 # 歡迎大家互相聯系討論
?> 
<link href="image/css.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body {
 background-color: #D4D0C8;
}
-->
</style>
<?php

 $Site = New Com("IIS://Localhost/w3svc/".$ServerID);

 iF($Submit){
  $Site->HttpErrors = "404,*,Url,".$httperr;
  $Site->SetInfo();
 }

?>
<table width="100%" border="0" cellspacing="0" cellpadding="3">
  <tr>
    <td><a href="3.php"><strong>返回主機列表</strong></a></td>
  </tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="3">
  <tr>
    <td><a href="33.php?ServerID=<?php echo $ServerID;?>">返回主機管理</a></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
</table>
<form action="?ServerID=<?php echo $ServerID;?>" method="POST">
設置404錯誤 <input type=input value="" size=80 name="httperr"><input type="Submit" name="Submit" value="提交">
<br>格式:/路徑/文件.htm,例如:/404.htm
</form>


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved