部署方法
运行环境要求PHP7.4+,MySQL5.6+
设置网站运行目录为public
设置伪静态为ThinkPHP
如果是下载的Source code包,还需Composer安装依赖(Release页面下载的安装包不需要)
composer install --no-dev
访问网站,会自动跳转到安装页面,根据提示安装完成
访问首页登录控制面板
伪静态规则
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>
下载
演示
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(2)
kankan
看看如何 学习知识