Heim  >  Artikel  >  Backend-Entwicklung  >  Centos dedeCMS 目录权限

Centos dedeCMS 目录权限

WBOY
WBOYOriginal
2016-07-25 08:44:011202Durchsuche
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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn