Ѹ� CMS ��װ˵��

1. ����Ҫ��

2. ����Ѹ� CMS

ǰ��Ѹ� CMS �����������°氲װ����https://www.xunruicms.com

�����صİ�װ����ѹ�������ء�

3. �ϴ��ļ���������

ʹ�� FTP ���������ߣ�����ѹ����ļ��ϴ����������ĸ�Ŀ¼�����磺

/www/wwwroot/yourdomain/
    ������ index.php
    ������ system/
    ������ config/
    ������ install/
    ������ ...
        

4. ����Ŀ¼Ȩ��

Ϊ����Ŀ¼���ļ����ö�дȨ�ޣ�

Linux ����������ʾ����

chmod -R 777 ./cache/
chmod -R 777 ./config/
chmod -R 777 ./uploadfile/
chmod -R 777 ./install/
        

5. ���� Web ������

Apache ���ã�


    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]

        

Nginx ���ã�

server {
    listen 80;
    server_name yourdomain.com;
    root /www/wwwroot/yourdomain;

    index index.php index.html index.htm;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }

    location ~ /\.ht {
        deny all;
    }
}
        

6. ��ʼ��װ

��������з��ʰ�װ�򵼣�http://yourdomain.com/install

������ʾ��ɻ�����⡢���ݿ����ú͹���Ա�˺����á�

7. ��װ����

8. ��������