欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Centos dedeCMS 目录权限

程序员文章站 2022-04-25 23:20:45
...
1 首先设置网站目录所有者为 用户
cd 目录
chown -R 用户 根目录
find 根目录 -type d -exec chmod 750 {} \;
find 根目录 -not -type d -exec chmod 640 {} \;
2 data、templets、uploads、a images目录
设置可读写权限:
cd 根目录
chmod -R 770 data templets uploads a images
  1. find 根目录 -type d -exec chmod 750 {} \;
  2. find 根目录 -not -type d -exec chmod 640 {} \;
复制代码
Centos, dedeCMS