所以我没有在 Windows 7 上运行 Apache 2.2
我的 DocumentRoot 设置为
DocumentRoot "E:/www"
and this works fine
# This should be changed to whatever you set DocumentRoot to.
#
#<Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs">
<Directory "E:/www">
</ Directory>
我希望将别名设置为映射到 Z 的 NAS 上的图像文件夹:
Alias /images "Z:/images/"
# <Directory "Z:/images">
# AllowOverride None
# Options None
# Order allow,deny
# Allow from all
# </Directory>
服务器将从上面开始,但是当我在浏览器中导航到 Z:\images\index.html
即localost/images/index.html
即得到一个 404 错误 Not Found
在此服务器上找不到请求的 URL /images/index.html。
任何建议我做错了什么