学习记录,配置Apache2.4版本支持虚拟机并启用伪静态规则。
1、开启虚拟机
先编辑Apache的conf目录下的httpd.conf文件。
去除# LoadModule rewrite_module modules/mod_rewrite.so的注释,开启mod_rewrite.so模块支持。去除# Include conf/extra/httpd-vhosts.conf的注释,引入虚拟机配置文件。
编辑httpd-vhost.conf
<VirtualHost *:80>
#发生错误时将发送邮件
#ServerAdmin test@xxx.com
#文档根目录
DocumentRoot "E:/www/laravel/public"
#域名
ServerName www.ct21.com
#错误日志
ErrorLog "logs/ct21-error.log"
#访问日志
CustomLog "logs/ct21-access.log" common
#配置rewrite相关选项
<Directory "E:/www/laravel/public">
#允许所有指令,这将允许.htaccess
AllowOverride All
#2.2的访问控制配置,先检查允许的条件,没有允许的全部禁止,中间只能有一个逗号不能有空格
#Order Allow,Deny
#Allow from All
#2.4的访问控制配置,效果等同以上
Require all granted
</Directory>
</VirtualHost>
在修改hosts文件
2、修改.htaccess
#以下表示:如果存在目录或文件则直接访问,否则执行RewriteRule
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#隐藏index.php
RewriteRule ^(.*)$ index.php/$1 [L]
重启服务器
3、mod_rewrite规则重写的标志
1) R[=code](force redirect) 强制外部重定向,强制在替代字符串加上http://thishost\[:thisport\]/前缀 重定向到外部的URL.如果code不指定,将用缺省的302 HTTP状态码。
2) F(force URL to be forbidden)禁用URL,返回403HTTP状态码。
3) G(force URL to be gone) 强制URL为GONE,返回410HTTP状态码。
4) P(force proxy) 强制使用代理转发。
5) L(last rule) 表明当前规则是最后一条规则,停止分析以后规则的重写。
6) N(next round) 重新从第一条规则开始运行重写过程。
7) C(chained with next rule) 与下一条规则关联
如果规则匹配则正常处理,该标志无效,如果不匹配,那么下面所有关联的规则都跳过。
8) T=MIME-type(force MIME type) 强制MIME类型
9) NS (used only if no internal sub-request) 只用于不是内部子请求
10) NC(no case) 不区分大小写
11) QSA(query string append) 追加请求字符串
12) NE(no URI escaping of output) 不再输出转义特殊字符
例如:RewriteRule /foo/(.*) /bar?arg=P1%3d$1 [R,NE] 将能正确的将/foo/zoo转换成/bar? arg=P1=zoo
13) PT(pass through to next handler) 传递给下一个处理
14) S=num(skip next rule(s)) 跳过num条规则
15) E=VAR:VAL(set environment variable) 设置环境变量