Apache偽靜態html(URLRewrite)設定法

Awbeci發表於2012-12-28
比如我們有新聞頁:/news/readmore.php?id=4875
我們要做成靜態頁:/news/top2007,4875.html
 
一 開啟 apache 的配置檔案 httpd.conf 。
二 將#loadmodule rewrite_module modules/mod_rewrite前面的#去掉
三 在 httpd.conf中新增:
<ifmodule mod_rewrite.c>
 RewriteEngine On
 RewriteRule /news/top2007,(d+).html$   /news/readmore.php?id=$1
</ifmodule>


相關文章