方法就是在httpd.conf文件:
<Directory/>
AllowOverride none
Require all denied
</Directory>
修改成下面的就可以了!
<Directory/>
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
方法就是在httpd.conf文件:
<Directory/>
AllowOverride none
Require all denied
</Directory>
修改成下面的就可以了!
<Directory/>
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>