永发信息网

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

答案:5  悬赏:60  手机版
解决时间 2021-11-20 05:30
  • 提问者网友:雨不眠的下
  • 2021-11-19 11:09
求助PHP伪静态,如何将动态PHP页面改为伪静态页面
最佳答案
  • 五星知识达人网友:琴狂剑也妄
  • 2021-11-19 11:50
伪静态实际上就是把 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
全部回答
  • 1楼网友:傲气稳了全场
  • 2021-11-19 15:37
smarty模板应该可以。
  • 2楼网友:神的生死簿
  • 2021-11-19 14:37
恩,对,二楼的说的对! 支持,就是这样的
  • 3楼网友:深街酒徒
  • 2021-11-19 14:18
可以把php的后缀直接换成.HTML
但是得把PHP的文件类型增加一个Html的!
  • 4楼网友:神也偏爱
  • 2021-11-19 13:28
你咋发两遍?。。。
=============
首先要确定你的Apache启用了mod_rewrite模块,并且将http.conf文件中网站所在目录的AllowOverride None 改为 AllowOverride all
然后在程序目录下创建一个名为 .htaccess的文件
将以下内容写入这个文件里:

RewriteEngine On
RewriteRule ^index/([0-9]+)\.html$ index.php?page=$1
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯