将文件设置为755,将目录设置为644

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将文件设置为755,将目录设置为644相关的知识,希望对你有一定的参考价值。

This will grep through your file structure (LAMP stack assumed) and change directories and files to the correct permissions to work with suphp.
  1. for i in $(find /home/*/public_html -maxdepth 0); do u=$(echo $i | awk -F '/' '{print $3}') && chown -R $u:$u $i; done
  2. for i in $(grep DocumentRoot /usr/local/apache/conf/httpd.conf | awk '{print $2}' | grep -v /usr/local/apache/htdocs); do chgrp nobody $i; done
  3. find /home/*/public_html -type d -exec chmod 755 '{}' ';'
  4. find /home/*/public_html -type f -exec chmod 644 '{}' ';'
  5. find /home/*/public_html -iwholename '*.cgi' -exec chmod 755 '{}' ';'
  6. find /home/*/public_html -iwholename '*.pl' -exec chmod 755 '{}' ';'

以上是关于将文件设置为755,将目录设置为644的主要内容,如果未能解决你的问题,请参考以下文章