码迷,mamicode.com
首页 > Web开发 > 详细

Apache重写模块:规则详解

时间:2014-12-17 12:22:50      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   on   文件   div   log   

1,开其重写模块:

  sudo a2enmod rewrite


 

2,配置为可重写: 

  打开 /etc/apache  

  < Directory /> 
    Options FollowSymLinks
    AllowOverride All
  < /Directory>

在项目目录下,新建 .htaccess文件,加入以下内容:

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On
  RewriteBase /

  #重写条件
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f

  #重写规则
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

3,重写规则:

  

  

  


 

Apache重写模块:规则详解

标签:style   blog   io   color   sp   on   文件   div   log   

原文地址:http://www.cnblogs.com/canbefree/p/4168885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!