标签:htm public home 家目录 路径 软链接 解决 orb 出现
Bug7:在/var/www/html用软链接连接到/home/test下modifyVLAN脚本所在文件夹里的PortChange.log。URL:ln -s /home/test/script/modify_VLAN_for_clients_PC/PortChange.log 111.log
URL2:ln -s /home/test/script/modify_VLAN_for_clients_PC/PortChange.log 111.log
在/var/www/html/test/public这个网站家目录下,用如下命令创建了软链接。
ln -s /home/test/script/modify_VLAN_for_clients_PC/PortChange.log 111.log
lrwxrwxrwx 1 root root 59 Jan 7 18:10 111.log -> /home/test/script/modify_VLAN_for_clients_PC/PortChange.log
但是我发现软链接的用户和组不是apache。这可能引起了问题。
于是chown -h apache:apache 111.log成功改变。
但是依然403 Forbidden。
经过文档提示,我前往软链接目标路径的文件夹,察看是否有文件夹缺少执行权和读取权。
发现/home/test缺少该权限。
[root@ChrisTest public]# chmod a+x /home/test/
[root@ChrisTest public]# ll -d /home/test/
drwx--x--x. 5 test test 4096 Jan 2 13:34 /home/test/
[root@ChrisTest public]# chmod a+r /home/test/
这之后,就可以正常访问了。
但是这样访问弹出的是记事本打开,于是我将软链接改为txt后缀,问题得到解决
[root@ChrisTest public]# mv 111.log PortChange.txt
标签:htm public home 家目录 路径 软链接 解决 orb 出现
原文地址:http://blog.51cto.com/7350550/2339859