# 系统环境
*****
PHP =7.4
Mysql = 5.7
Apache 或 Nginx
*****
# 搭建教程
一.将源码上传至服务器(空间)
*****
二.解压,将域名解析到服务器并指向目录
*****
三.设置伪静态
nginx:
```
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
```
apache:
```
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
```
由于我的服务器配置是nginx,所以apache的伪静态我没有亲测过,如果无法使用的话,就使用宝塔中默认的thinkphp的伪静态即可,nginx同理。
*****
四:开始安装
访问网址http://你的域名/Install
注意:是Install,不是install