Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚将 joomla zip 内容解压缩到/var/www/site1
/var/www/site1
在 joomla 后端系统信息中,它说目录权限在那里,我认为所有内容都是不可写的。
我想知道我应该对这些文件夹授予什么权限
所有文件夹应为 755,文件应为 644
递归地赋予目录读取和执行权限:
find /path/to/base/dir -type d -exec chmod 755 {} +
递归地赋予文件读取权限:
find /path/to/base/dir -type f -exec chmod 644 {} +
阅读更多
完全不建议制作文件夹777,这会带来安全威胁。
所有文件夹应为755,文件应为644