Apache创建rewrite规则

2017-04-27  本文已影响0人  aoshi

启用mod_rewrite模块
在conf目录的httpd.conf文件中找到
LoadModule rewrite_module modules/mod_rewrite.so

在apache/conf/extra/http-vhost.conf 文件中

正常模式
<Directory "c:/web/php/">
Options Indexes FollowSymLinks
AllowOverride None #禁止重写
Order allow,deny
Allow from all
</Directory>

rewrite模式

<Directory "c:/web/php/">
Options Indexes FollowSymLinks
AllowOverride All #允许重写
Order allow,deny
Allow from all
</Directory>

上一篇下一篇

猜你喜欢

热点阅读