求助!You don't have permission to access /logp on this server
用的apache/php
httpd.conf配置如下
DocumentRoot "/var/www/html"
<Directory />
Options FollowSymLinks
AllowOverride ALL
Order deny,allow
Allow from all
</Directory>
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
然后我在index.html中加入
<h2><a href="logp/index.php">log</a></h2>
但是点击log后提示
Forbidden
You don't have permission to access /logp on this server.
Apache/2.2.15 (CentOS) Server at 103.19.96.191 Port 80
logp是在index.html的同级目录下的一个软链接 (ln -s ),求助怎么弄