Saya mendapatkan instalasi CentOS 6 baru, yang memiliki symlink di root dokumen ke file pengembangan saya:
[root@localhost html]# ls -l
total 4
-rwxrwxrwx. 1 root root 0 Sep 18 20:16 index.html
-rwxrwxrwx. 1 root root 17 Sep 18 20:16 index.php
lrwxrwxrwx. 1 root root 24 Sep 18 20:19 refresh-app -> /home/billy/refresh-app/
Httpd.conf saya memiliki ini:
<Directory "/">
Options All
AllowOverride None
Order allow,deny
Allow from all
</directory>
Target tautan simbolis memiliki izin yang memungkinkan apache membaca apa pun yang diinginkan:
[root@localhost billy]# ls -l
total 40 (Some entries were omitted because the list was too long
drwxr-xr-x. 7 billy billy 4096 Sep 18 20:03 refresh-app
Saya juga telah mencoba menonaktifkan SELinux dengan mengubah /etc/selinux/conf
:
SELINUX=disabled
Namun apa pun yang saya lakukan, ketika seseorang mencoba membuka tautan itu http://localhost/refresh-app/
, saya mendapatkan halaman kesalahan 403 DILARANG dan ini ditulis dalam /var/log/httpd/error_log
:
Symbolic link not allowed or link target not accessible
Mengapa Apache tidak dapat mengakses target symlink?