一、根据$_SERVER['PATH_INFO']来操作实现。
示例:http://127.0.0.1/show_new.php/look-id-1.shtml
echo $_SERVER['PATH_INFO'] 的输出为:/look-id-1.shtml。
1、index.php
/**
* php伪静态
* www.
*/
$conn=mysql_connect()("localhost","root","root")or dir("连接失败");
mysql_select_db("tb_demo",$conn);
$sql="select * from news";
$res=mysql_query()($sql);
header("content-type:text/html;charset=utf-8");
echo "<h1>新闻列表</h1>";
echo "<a href='/blog_article/add_news.html'>添加新闻</a><hr/>";
echo "<table>";
echo "<tr><td>id</td><td>标题</td><td>查看详情</td><td>修改新闻</td></tr>";
while($row=mysql_fetch_assoc($res)){
echo "<tr><td>{$row['id']}</td><td>{$row['title']}</td><td><a href='/blog_article/show_new.php/look-id-{$row[/index.html'id']}.shtml'>查看详情</a></td><td><a href='#'>修改页面</a></td></tr>";
}
//上面的红色的地址本来该是show_news.php?act=look&id={$row['id']}
echo "</table>";
//关闭资源
mysql_free_result($res);
mysql_close($conn);
?>
2、show_new.php页面
header("Content-type:text/html;charset=utf-8");
$conn=mysql_connect("localhost","root","root");
mysql_select_db("tb_demo",$conn);
mysql_query("set names utf8");
$pa = $_SERVER['PATH_INFO'];
//$pa 打印出来的值是 /look-id-1.html
//通过正则表达式匹配获取的url地址
if(preg_match('/^\/(look)-(id)-([\d])\.shtml$/',$pa,$arr)){
$act = $arr[1]; //这个是请求的look方法
$id = $arr[3]; //这个是获取的id 值
$sql="select * from news where id= $id";
$res=mysql_query($sql);
$res = mysql_fetch_assoc($res);
echo $res['title']."<hr>".$res['content'];
}else{
echo "url地址不合法";
}
mysql_close($conn);
?>
二、根据配置.htaccess来实现
先说下.htaccess文件怎么创建吧,在网站根目录下建立个记事本然后双击打开点击另存为 文件名写成.htaccess ,保存类型选择所有文件,编码选择utf-8的编码好的这是你就在目录看到这个.htaccess文件了。
首先,在apache 开启mod_rewrite.so,AllowOverride None 这里有两处 替换为 AllowOverride All。
比如href 地址写成 one_new-id-1.shtml //这个意思是one_new.php?id=1
这里的.htaccess这样写:
#写你的rewrite规则
RewriteEngine On
# 可以配置多个规则,匹配的顺序是从上到下
RewriteRule one_new-id-(\d+)\.shtml$ one_new.php?id=$1 //这里的$1 代表的是第一个参数啊
RewriteRule abc_id(\d+)\.html$ error.php
#设置404错误
#ErrorDocument 404 /error.php
</IfModule>
在one_new.php 页面echo $_GET['id'] 肯定会输出 id的值了。
就介绍这些吧,php实现伪静态还是很简单的,希望大家多多实践,写出更加灵活而轻便的伪静态规则。
代码如下:
<?php /** * stripslashes()与addslashes() 应用举例 * Edit www. */ //去除转义方法 public function mystrip($data){ if (is_array($data)){ foreach ($data as &$v){ $this->mystrip(&$v); } }else{ $data = stripslashes($data); } } //加上转义 function addslashes_deep($value) { if (empty($value)) { return $value; //如为空,直接返回; } else { return is_array($value) ? array_map('addslashes_deep', $value): addslashes($value); } //递归处理数组,直至遍历所有数组元素; } ?>
1、使用header头设置缓存控制头Cache-control。
2、使用session_cache_limiter方法。
附,session_cache_limiter参数:
session_cache_limiter内的几个参数意义是:
nocache:当然是不缓存(比如:表单信息被清除),但公共变量可以缓存
private:私有方式缓存(比如:表单信息被保留,但在生存期内有效)
private_no_cache:私有方式但不过期(表单信息被保留)
publice:公有方式,(表单信息也被保留)
设置缓存过期时间:session_cache_expire函数设置,缺省是180分钟。
常见问题:
session_cache_limiter("private");表单信息是保留了,但是如果修改已经提交的信息,表单页面所呈现的信息还是缓存里信息,没能及时自动刷新,如果不用session_cache_limiter("private");又不能保留表单信息
解决方法:
在session_start前面加上:
您可能感兴趣的文章:
php表单提交后再后退 内容则默认清空的解决方法