我的Windows 7机器上安装了Apache 2.2.21服务器。 我的网站已启动,我的/scripts
子目录中的/scripts
正在运行,但是当我尝试从/icons
加载图标时,我收到403禁用错误。 我已经将它添加到我的httpd.conf
文件中:
<Directory "c:/wamp/www/icons/">
Options Indexes FollowSymLinks
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
仍然没有效果。 所以问题是:如何访问my /icons
子文件夹中的文件?
PS:使用/images
子目录工作得很好但问题仍然存在。