比如下面这段,我要输出为伪静态 show-文章id.html 应该怎么写
<?php
$result = mysql_query("SELECT * FROM dxju where fl='生活常识' ORDER BY itemid DESC limit 0,10");
while($row = mysql_fetch_array($result))
{
$tm = mysubstr($row['tm'],0,45);
echo "<p><a href=show.php?itemid=".$row['itemid'];
echo " title=".$tm." >";
echo $tm;
echo "</a></p>";
}
?>
</ul>
看你用的什么web服务器比如 apache或者nginx 里都有 url重写功能。