The default access permissions to the website root are defined in the apache configuration file httpd.conf
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Directory>
was changed to
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
Directory>
Problem Solved
http://www.bkjia.com/PHPjc/654278.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/654278.htmlTechArticleThe default access permissions to the website root are defined in the apache configuration file httpd.conf# Directory / Options FollowSymLinks AllowOverride None Order deny,allow Deny from all / Directory change...
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn