求助PHP伪静态,如何将动态PHP页面改为伪静态页面 10

/index.php?page=2如何将上面的url转伪静态/index/2.html很简单的分页代码,我粘上来,麻烦帮我改一下,我只是php新手<?php//分页代码$... /index.php?page=2
如何将上面的url转伪静态
/index/2.html

很简单的分页代码,我粘上来,麻烦帮我改一下,我只是php新手

<?php
//分页代码
$first=1;
$prev=$page-1;
$next=$page+1;
$last=$pages;
echo "<div style='padding:10px' align='center'>共有".$pages."页(".$page."/".$pages.")";
if ($page > 1)
{
echo " <a href='?page=".$first."'>首页</a> ";
echo " <a href='?page=".$prev."'>上一页</a> ";
}

if ($page < $pages)
{
echo " <a href='?page=".$next."'>下一页</a> ";
echo " <a href='?page=".$last."'>尾页</a> ";
echo "</div>";
}
//分页代码
mysql_free_result($result);
mysql_close();
?>
展开
 我来答
阳光上的桥
推荐于2016-10-08 · 知道合伙人软件行家
阳光上的桥
知道合伙人软件行家
采纳数:21423 获赞数:65813
网盘是个好东东,可以对话和传文件

向TA提问 私信TA
展开全部
  伪静态实际上就是把 index.php?act=about&cid=1 将这种形式的动态路径用 about-1.html 这种形式输出,也就是说浏览器每次访问about-1.html地址能打开相应的index.php?act=about&cid=1动态网址。

伪静态的实现本质上是配置服务器进行路径转换,根据不同的服务器环境,配置方法也不太一样,PHP+iis6的话就要配置httpd.ini文件,php+iis7就要配置web.config,PHP+apache就要配置.htaccess文件(或者httpd.conf)

.htaccess(或者httpd.conf)文件的规则示例:
RewriteEngine on
RewriteRule ^/?(index|guestbook|online)\.html$ index\.php [L]
RewriteRule ^/?(eindex)\.html$ index\.php?act=$1 [L]
RewriteRule ^/?(index|guestbook|online)-([0-9]+).html$ index\.php\?p=$2 [L]
RewriteRule ^/?([a-z0-9]+)_([0-9]+).html$ index\.php\?act=$1&id=$2 [L]
RewriteRule ^/?([a-z0-9]+)-([0-9]+).html$ index\.php\?act=$1&cid=$2 [L]
RewriteRule ^/?([a-z0-9]+)-([0-9]+)-([0-9]+).html$ index\.php\?act=$1&cid=$2&p=$3 [L]

httpd.ini示例:
[ISAPI_Rewrite]
RepeatLimit 32
# Block external access to the httpd.ini and httpd.parse.errors files
RewriteRule /httpd(?:\.ini|\.parse\.errors).* / [F,I,O]
# Block external access to the Helper ISAPI Extension
RewriteRule .*\.isrwhlp / [F,I,O]
RewriteRule ^/(index|guestbook|online)\.html$ /$1\.php
RewriteRule ^/(eindex).html$ /index\.php\?act=$1
RewriteRule ^/(index|guestbook|online)-([0-9]+).html$ /$1\.php\?p=$2
RewriteRule ^/([a-z0-9]+)_([0-9]+).html$ /index\.php\?act=$1&id=$2
RewriteRule ^/([a-z0-9]+)-([0-9]+).html$ /index\.php\?act=$1&cid=$2
RewriteRule ^/([a-z0-9]+)-([0-9]+)-([0-9]+).html$ /index\.php\?act=$1&cid=$2&p=$3
Storm代理
2023-08-29 广告
"StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,I... 点击进入详情页
本回答由Storm代理提供
ichigo3836
2009-08-02 · TA获得超过443个赞
知道小有建树答主
回答量:663
采纳率:85%
帮助的人:337万
展开全部
你咋发两遍?。。。
=============
首先要确定你的Apache启用了mod_rewrite模块,并且将http.conf文件中网站所在目录的AllowOverride None 改为 AllowOverride all
然后在程序目录下创建一个名为 .htaccess的文件
将以下内容写入这个文件里:

RewriteEngine On
RewriteRule ^index/([0-9]+)\.html$ index.php?page=$1
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
湘味熊美食
2009-08-02 · 超过71用户采纳过TA的回答
知道小有建树答主
回答量:271
采纳率:0%
帮助的人:139万
展开全部
可以把php的后缀直接换成.HTML
但是得把PHP的文件类型增加一个Html的!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
cartli
2009-08-06 · TA获得超过291个赞
知道小有建树答主
回答量:292
采纳率:0%
帮助的人:245万
展开全部
smarty模板应该可以。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
IT走一生
2009-08-09
知道答主
回答量:7
采纳率:0%
帮助的人:0
展开全部
恩,对,二楼的说的对! 支持,就是这样的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式