klum 发表于 2014-5-19 14:56:20

如何让APACHE支持htaccess

如何让自己的本地APACHE服务器支撑'.htaccess'呢?
只要简略修正一下apache的httpd.conf设置就可以让APACHE支撑.htaccess,
打开httpd.conf文件(在那里? APACHE目录的CONF目录里面),用文本编辑器打开后,查找
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
改为
<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>
就可以了
页: [1]
查看完整版本: 如何让APACHE支持htaccess