linux apache伪静态设置
1.编写位置.htaccess,设置文件属性为777
<IFMODULE mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteRule category/(.*)/(.*).html$ category.php?id=$1&page=$2 RewriteRule chapter/ctx_(.*).html$ chapter_ctx.php?id=$1RewriteRule ^t_(.*).html$ test.php?id=$1 [L]</IFMODULE>
DocumentRoot "/var/www/html"
AllowOverride All