我是apache的新手。我在mac中使用apache 2.2.26。
我想为用户提供一个文件夹的链接,使用该链接从该文件夹下载文件。我使用以下设置在/ Private / etc / apache2 / other /下创建了一个conf文件
Alias /outputfiles/ /Users/XXXX/sharing
<Directory "/Users/XXXX/sharing">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
当我发出&#34; localhost / outputfiles /&#34;在浏览器中,我收到了403 Forbidden消息。
和error_log在文件末尾包含以下内容。
[Thu Oct 30 10:20:22 2014] [notice] Apache/2.2.26 (Unix) DAV/2 mod_ssl/2.2.26 OpenSSL/0.9.8za configured -- resuming normal operations
[Thu Oct 30 10:20:26 2014] [error] [client ::1] client denied by server configuration: /Users/XXXX/sharingindex.html
ls -la for / Users / XXXX / sharing commmand提供以下输出
total 128 drwxr-xr-x 7 755 110063367 238 Oct 29 16:07 . drwxr-xr-x+ 43 XXXX 110063367 1462 Oct 30 10:18 .. -rw-r--r--@ 1 755 110063367 6148 Oct 30 10:17 .DS_Store -rw-r--r--@ 1 755 110063367 37441 Sep 1 12:28 Trade.txt -rw-r--r-- 1 755 110063367 3727 Sep 1 11:44 census.txt -rw-r--r-- 1 755 110063367 4683 Sep 19 15:23 script.sh -rw-r--r-- 1 755 110063367 22 Sep 23 15:27 testing.sql
请你指导我。