IIS 不用 rewrite 实现页面静态化的方法

2008-02-23 06:26:28来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

用rewrite做的静态页面实际不存在,iisewrite又不稳定经常404,于是就有了这篇文章。

原理:404页面类型用PHP(Asp也可以),结合小偷,实现页面静态化

用discuz!论坛archiver举例:
404程序页面:http://bbs.pkxp.com/error.php
演示:http://bbs.pkxp.com/archiver/
error.php源码:

<?php
$url = $_SERVER['QUERY_STRING'];
$url = str_replace("404;","",$url);
if (!ereg ('archiver', $url))
echo "404错误";
//404错误页面显示内容
else {
$url = str_replace("archiver/","archiver/?",$url);
$str = file("$url");
$count = count($str);
for ($i=0;$i<$count;$i ){
$file .= $str[$i];
}
echo $file;
//实现archiver/?xx.html 变成archiver/xx.html
}
?>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:PHP链接ACCESS数据库最简单的方法

下一篇:一个全面获取图象信息的函数getImageInfo()