启用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>
网友评论