将 Apache 别名目录移动到 google 驱动器将给我访问禁止错误

Moving Apache aliased directory into google drive will give me access forbidden errors

我正在将我的本地开发服务器移动到 Google 驱动器上,这样我就可以在我的计算机之间共享它,但是因为我这样做了,所以我无法再通过浏览器访问我的文件,我有一个 "Access Forbidden" 错误。在 Apache 错误日志中我有这个:

[authz_core:error] [pid 11144:tid 1268] [client 127.0.0.1:59641] AH01630: client denied by server configuration: C:/Users/Val/Google Drive/workspaces

除了目录

,我没有更改我的 apache 配置中的任何内容
Alias /phpprojects "C:\Users\Val\Google Drive\workspaces\workspace-php"
<Directory "C:\Users\Val\Google Drive\workspaces\workspace-php">
    Options All
    AllowOverride All
    Require all granted
</Directory>

目录在更改之前是 C:\Users\Val\workspaces\workspace-php

我已经尝试了这里的建议 http://forum.wampserver.com/read.php?2,110159,110159 (giving permissions to SYSTEM, and then tried even "Everyone") and i have tried what's suggested here Use Google Drive Directory as Apache Virtual host(虽然我在 Windows 8 所以 ui 略有不同,我已经激活 "allow inheritance"), none 其中有效。

还有什么方法可以解决这个问题?

此时有点尴尬,但我意识到问题是我设置了错误的路径。
"Access Forbidden" 错误以及我在使用 google 驱动器时发现有关禁止访问错误的证据让我认为这是一个权限问题而不是路径问题,所以我什至没有检查它,直到现在。