我尝试将带有别名的网络共享映射到我的http路径中。 一切正常,但我确实有问题,我的Networkshare在Apache启动期间无法访问。实际上Apache在启动期间挂起。是否有选项允许Apache忽略不可用的网络共享,以便Apache尝试连接每个Access ...
这是我的conf:
Alias /e //10.15.228.3/e
<Directory "//10.15.228.3/e">
Options Indexes FollowSymLinks Includes ExecCGI
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Require all granted
</Directory>
All使用Apache 2.4在Windows下运行。
THANX!