伪静态好处:
- 利于搜索引擎的收录,spiders比较喜欢html, htm后缀的
- 隐藏实现技术
- 方便使用
在apache下实现伪静态:
比如我们有页面:/html/1.php?id=4875
我们要做成静态页:/html/4875.html
只要改变id的值就可以生成不同的静态页.
一 打开 apache 的配置文件 httpd.conf 。
二 将#loadmodule rewrite_module modules/mod_rewrite前面的#去掉
三 在 httpd.conf中添加:
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteRule /html/(\d+).html$ /html/1\.php\?id=$1
</ifmodule>
RewriteEngine On
RewriteRule /html/(\d+).html$ /html/1\.php\?id=$1
</ifmodule>
四 保存httpd.conf并重启apache。
浙公网安备 33010602011771号