1.3 .htaccess语法

.htaccess是Apache服务器的一个非常强大的分布式配置文件。

1. 常见格式

#开启URL重写
RewriteEngine On
#URL重写作用域
RewriteBase /path/to/url
#重写条件
RewriteCond
#重写规则
RewriteRule
例子CodeIgniter移除URL中的index.php

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php/$1 [L]

这几句的意思是如果找不到文件或目录  请求就经过index.php文件

{REQUEST_FILENAME}是apache变量,需要%来指示。

!-f  !-d  表示文件和目录不存在

^(.*)$ index.php/$1 表示重写规则

[L](last) 终止一系列的RewriteCond和RewriteRule

[NC](no case)忽略大小写

[R](redirect) 触发一个显示的跳转,也可以指定跳转类型,如[R=301]

[F](forbidden) 禁止查看特定文件,apache会触发403错误

posted @ 2015-09-06 21:35  codergma  阅读(214)  评论(0编辑  收藏  举报