伪静态页面(10.24 第二十六天)
Posted liujizhou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了伪静态页面(10.24 第二十六天)相关的知识,希望对你有一定的参考价值。
伪静态页面的搭建
http://www.test.com/index.php?id=1 (容易受到攻击)
http://www.test.com/index.html (静态页面只能够展示数据,安全性很高)
http://www.test.com/1.html(伪静态页面)
http://www.test.com/add_1.html(伪静态页面)
步骤:
1、需要开启站点的重写机制,修改apache配置文件,找到:
LoadModule rewrite_module modules/mod_rewrite.so 去掉前面的注释符号,重启apache
需要apache支持解析 .htaccess文件,修改配置文件,找到:
AllowOverride None 修改为 AllowOverride ALL
2、新建 .htaccess文件,然后写入重写规则
RewriteEngine on //开启重写机制
RewriteRule ([0-9]{1,}).html$ index.php?id=$1 //重写规则,([0-9]{1,})匹配$1的值 是转义符,html$表示URL中是以html结尾。
以上是关于伪静态页面(10.24 第二十六天)的主要内容,如果未能解决你的问题,请参考以下文章