【发布时间】:2016-07-02 05:50:09
【问题描述】:
【问题讨论】:
标签: apache permissions wamp local configure
【问题讨论】:
标签: apache permissions wamp local configure
我找到了我的问题的解决方案。
在httpd.conffile 中更改以下内容
DocumentRoot "J:/wamp/www/"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
还有这个,
# onlineoffline tag - don't remove
Order Allow,Deny
Allow from all
Allow from 127.0.0.1
</Directory>
它对我来说很好用。
我从Github找到了解决方案
【讨论】: