我需要允许从我的Apache访问〜/ Sites中的符号链接目录。我这样链接目录
ln -s ~/path/to/the/source/directory/ ~/Sites/source-link-here
现在,每当我启动GET请求时,我都会收到403答复
curl http://localhost/~username/source-link-here/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /~username/source-link-here
on this server.</p>
...
我如何告诉Apache允许访问符号链接目录,以及如何告诉Apache仅对从本地主机发出的请求允许访问。
任何帮助是极大的赞赏。
最好的祝福
罗伯特