天天看点

Apache2如何支持.htaccess

主要修改apache安装文件夹conf下的httpd.conf文件

1.将“#LoadModule rewrite_module modules/mod_rewrite.so”前面的#号去掉

2.将“

Options Indexes FollowSymLinks

AllowOverride None

”改为“

Options Indexes FollowSymLinks

AllowOverride All

3.将“Options Indexes FollowSymLinks … AllowOverride All”所在的“Directory”目录改为你的网页根目录,例如我的是“G:/php/www”,那“Directory”就改为“< Directory “G:/php/www”>”

4.重新启动apache服务器,大功告成!