考虑到网站安全,因此需要设置目录以及文件相应的权限分别为755和644
# find /path -type f -exec chmod 644 {} \; //设置文件权限为644 # find /path -type d -exec chmod 755 {} \; //设置目录权限为755
考虑到网站安全,因此需要设置目录以及文件相应的权限分别为755和644
# find /path -type f -exec chmod 644 {} \; //设置文件权限为644 # find /path -type d -exec chmod 755 {} \; //设置目录权限为755