我已经针对类似的问题尝试了一些建议/答案,但没有一个有帮助!
我在ubuntu 14.4上运行Apache2..4.7,我已经完成了
canFinish()
虽然请求localhost或127.0.0.1以及令人惊讶的127.0.1.1正在返回Ubuntu默认页面, http://127.0.0.1/download/file.extn正在提供
禁 您无权访问此服务器上的/download/file.extn。 Apache / 2.4.7(Ubuntu)服务器在127.0.0.1端口80
错误日志说:
(13)权限被拒绝:[client 127.0.0.1:52345] AH00035:访问/download/apkFile.apk被拒绝(文件系统路径'/ var / www'),因为路径组件上缺少搜索权限< / p>
apache2.conf已更改为:
mkdir /var/www/html/download
cp src /var/www/html/download/file.extn
导致Directory
Options FollowSymLinks
AllowOverride None
Require all granted
Directory
Directory /usr/share
AllowOverride None
Require all granted
Directory
Directory /var/www/
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
Directory
Directory /var/www/html/download
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
Directory
的所有目录的权限已经chmod为644。