AllowOverride参数就是指明Apache服务器是否去找.htacess文件作为配置文件,如果设置为none,那么服务器将忽略.htacess文件,如果设置为All,那么所有在.htaccess文件里有的指令都将被重写。
Require local大致意思就是只允许本地服务器访问。
解决方法:
把AllowOverride none 改为AllowOverride all。
把Require local删掉或用#注释掉
添加Require all granted这条语句,意思是允许所有请求访问资源。
<VirtualHost *:80>
ServerName zq.boen.link
ServerAlias zq.boen.link
DocumentRoot "${INSTALL_DIR}/www/guajizq"
<Directory "${INSTALL_DIR}/www/guajizq/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>