最近从 Win XP (x86) 迁移到 Win 7 (x64),我还不得不重新安装 Apache。我已经安装了 64 位版本的 Apache (2.4.3) 和 PHP (2.4)。
我将它安装到 c:\Apache24。
我已经启动并运行它,但现在我需要将它锁定到我的本地 PC 上。
如果我有:
<Directory "c:/Apache24/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
# New directive needed in Apache 2.4.3 apparently:
Require all granted
</Directory>
这很好用,但是如果我将其更改为:
<Directory "c:/Apache24/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from 127.0.0.1
# New directive needed in Apache 2.4.3 apparently:
Require all granted
</Directory>
(或“本地主机允许”或“192.xyz 允许”)
我收到拒绝访问错误。我怎样才能绕过这个?
一切都是使用我的登录名安装的,它具有完全的本地管理员权限。