Ecshop 静态问题

2016-07-07 15:38 来源:www.chinab4c.com 作者:ecshop专家

如果使用的虚拟主机不支持 URL静态重写,可以通过404页面的方法实现URL重写吗?如果可以这个404.PHP怎么写。希望高手能指点一下。

回答:
在网上找到这样的例子,但是本人不才,不会看,只有贴出来做抛砖引玉之用:

原理: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
}
?>