伪静态页面(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结尾。
相关推荐
furongwei 2020-07-04
PlumRain 2020-05-18
zgwyfz 2020-02-22
GoatSucker 2020-02-15
MichelinMessi 2020-01-07
CoderBoy 2019-12-30
hithyc 2014-06-08
bowean 2019-12-08
WinerChopin 2019-11-16
happyfreeangel 2019-11-08
liben00 2008-07-24
wuhuaguwuhuaguo 2019-06-27
ysmh00 2019-07-16
huangyx 2014-11-12
shouen 2015-03-10
随智阔 2015-03-10
renpinghao 2019-09-08
WinerChopin 2018-01-25
xieronghua 2019-04-16