答案 0 :(得分:0)
我找到了解决问题的方法。
httpd.conf
文件中的更改以下内容
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
的解决方案