`
bjmike
  • 浏览: 282883 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

linux apache伪静态设置

 
阅读更多
1.编写位置.htaccess,设置文件属性为777
<IFMODULE mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule category/(.*)/(.*).html$ category.php?id=$1&page=$2 
RewriteRule chapter/ctx_(.*).html$ chapter_ctx.php?id=$1
RewriteRule ^t_(.*).html$ test.php?id=$1 [L]
</IFMODULE>

2.修改httpd.conf,
vi /etc/httpd/conf/httpd.conf

DocumentRoot "/var/www/html"

后面增加
 AllowOverride All
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics