前往迅睿 CMS 官网下载最新版安装包:https://www.xunruicms.com
将下载的安装包解压缩到本地。
使用 FTP 或其他工具,将解压后的文件上传到服务器的根目录。例如:
/www/wwwroot/yourdomain/ ├── index.php ├── system/ ├── config/ ├── install/ └── ...
为以下目录和文件设置读写权限:
Linux 服务器命令示例:
chmod -R 777 ./cache/ chmod -R 777 ./config/ chmod -R 777 ./uploadfile/ chmod -R 777 ./install/
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]
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; } }
在浏览器中访问安装向导:http://yourdomain.com/install
按照提示完成环境检测、数据库配置和管理员账号设置。
/install/
目录:rm -rf /www/wwwroot/yourdomain/install/
http://yourdomain.com/
http://yourdomain.com/admin.php