迅睿 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. 常见问题