Apache的Rewrite详解

Rewrite的需求

在用Apache做web服务器的时候,有的时候需要将输入的URL转换成另一个URL这种需求。比如用CodeIgniter框架开发web应用的时候,我们访问的所有路径都要经过index.php,由这个index.php做统一路由,访问地址如下:

example.com/index.php/news/article/my_article

这样的地址实在是太丑了,我们想要一个干净的地址如下:

example.com/news/article/my_article

这时你的 Apache 服务器需要启用mod_rewrite,然后简单的通过一个 .htaccess 文件再加上一些简单的规则就可以移除URL中的 index.php 了。下面是这个文件的一个例子, 其中使用了 "否定条件" 来排除某些不需要重定向的项目:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

在上面的例子中,除已存在的目录和文件,其他的 HTTP 请求都会经过你的 index.php 文件。也就是说单用户在地址栏里输入【example.com/news/article/my_article】的时候实际上访问的是【example.com/index.php/news/article/my_article】。

Rewrite使用详解

1.确认Apache是否加载了Rewrite模块

确认配置文件httpd.conf 中是否存有下面的代码:

Apache1.x

LoadModule rewrite_module libexec/mod_rewrite.so   
AddModule mod_rewrite.c

Apache2.x

 LoadModule rewrite_module modules/mod_rewrite.so 

启用.htaccess

AllowOverride None 修改为: AllowOverride All

配置Rewrite规则

Rewrite规则可以在httpd-vhosts.conf文件和.htacess文件中进行配置。在虚拟域名配置文件下配置如下例:


NameVirtualHost *:80

    DocumentRoot "D:/wamp/www/testphp/"
    ServerName php.iyangyi.com
    ServerAlias www.pptv.cn #可省略
    ServerAdmin [email protected] #可省略
    ErrorLog logs/dev-error.log #可省略
    CustomLog logs/dev-access.log common #可省略
    ErrorDocument 404 logs/404.html #可省略
    
        Options Indexes FollowSymLinks
        AllowOverride All
        Order Allow,Deny
        Allow from all
        RewriteEngine on
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
    

如果在.htacess文件下配置,可以具体配置到访问某个目录下URL的重定向规则。

RewriteCond 与 RewriteRule

学习Rewrite只需要重点了解他的三个核心就可以:RewriteEngineRewriteCondRewriteRule

RewriteEngine

这个是rewrite功能的总开关,用来开启是否启动url rewrite

RewriteEngine on

RewriteCond

RewriteCond就是一个过滤条件,简单来说,当URL满足RewriteCond配置的条件的情况,就会执行RewriteCond下面紧邻的RewriteRule语句。

RewriteCond的格式如下:
RewriteCond %{待测试项目} 正则表达式条件
举个例子:

RewriteEngine on
RewriteCond  %{HTTP_USER_AGENT}  ^Mozilla//5/.0.*
RewriteRule  index.php            index.m.php

如果设置上面的匹配规则,到来的http请求中的HTTP_USER_AGENT匹配【^Mozilla//5/.0.*】正则表达式的话,则执行下面的RewriteRule,也就是说访问路径会跳转到 index.m.php这个文件。在具体的一些参数,apache的虚拟域名rewrite配置以及.htaccess的使用这篇文章讲的更加详细。

调试

在apache的配置文件中加入下面配置:

#Rewrite Log 
RewriteLog logs/rewrite.log #此处可以写绝对地址 
RewriteLogLevel 3

这样就可以在Apache的默认日志文件中找到rewrite.log观察apache URL重写的过程(参考:如何调试Apache的URL重写)。

你可能感兴趣的:(Apache的Rewrite详解)