首页 >后端开发 >php教程 >Centos dedeCMS 目录权限

Centos dedeCMS 目录权限

WBOY
WBOY原创
2016-07-25 08:44:011251浏览
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


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn