Home >Backend Development >PHP Tutorial >You don't have permission to access / on thi_PHP tutorial appears in apache

You don't have permission to access / on thi_PHP tutorial appears in apache

WBOY
WBOYOriginal
2016-07-13 10:42:141289browse

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

www.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