我正在为Windows中的本地网络构建一个网页。我的网页中的图像存储在E盘中,而htdocs位于C盘中,我想访问E盘中的图像并在网页中显示(链接)它们。像这样
http://192.168.1.5/e://LAN/image.jpg
当我尝试上面的链接时,它给了我403。 我尝试将下面的两个代码分别添加到httpd.conf中,就像大多数答案一样。但是没有用。
<Directory "e://LAN/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Allow from all
Require all granted
<Directory />
Require all granted
Options FollowSymLinks
AllowOverride All
Allow from all
</Directory>
任何答案都将不胜感激,
答案 0 :(得分:0)
使用应该运行的文件的完整Windows路径:“E:\ folder \ image.jpg”
或者只是复制 htdocs / project 目录中的文件以进行测试。