所有的链接都使用的是/article_view_6.html 第一次执行,用的是rewrite,然后生成了article_view_6.html这个文件,第二次访问。apache就直接使用article_view_6.html这个静态页面了
下面自己写的一个.htaccess文件,主要的作用就是rewrite静态化,如果html文件存在,则直接用,不使用伪静态(不执行php教程),后台如果对文章、首页或是列表页做了更改,只需把相应的html文件删除就行了,无需重新生成。
-
- RewriteEngine on
- #rewrite规则
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^article_view_([0-9]+).html$ ?m=article&a=view&1=$1 [L]
- #去掉index.php 框架中需要使用
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
-
使用方法
- require_once("html.class.php");
- $html=new html();
-
-
- $html->writehtml();
- ?>
|