当前位置:网站首页>Thinkcmf6.0 installation tutorial
Thinkcmf6.0 installation tutorial
2022-07-07 07:56:00 【Xie Xiaoxin】
1. Go to the official website to download thinkcmf / ThinkCMF--6.0

2. Go to thinkcmf / ThinkCMF Enterprise portal solutions --> download

3. Then merge the second step file into the first step
4. use phpstudy Create a website
Good configuration nginx file
location / {
index index.php index.html index.htm;
# If the request is neither a file , It's not a directory , Then execute the rewrite rule
if (!-e $request_filename)
{
# Address as a parameter rewrite To index.php On .
rewrite ^/(.*)$ /index.php?s=$1;
# If it's a subdirectory, use the following sentence , take subdir Change it to the directory name .
#rewrite ^/subdir/(.*)$ /subdir/index.php?s=$1;
}
}
location /api/ {
index index.php index.html index.htm;
# If the request is neither a file , It's not a directory , Then execute the rewrite rule
if (!-e $request_filename)
{
# If it's a subdirectory, use the following sentence , take subdir Change it to the directory name .
rewrite ^/api/(.*)$ /api.php?s=$1;
}
}
location ~* ^\/upload\/.+\.(html|php)$ {
return 404;
}
location ~* ^\/plugins\/.+\.(html|php)$ {
return 404;
}
location ~* ^\/themes\/.+\.(html|php)$ {
return 404;
}5. Start the installation database
6. Remove the installer after successful installation
composer remove thinkcmf/cmf-install

边栏推荐
- 【数字IC验证快速入门】17、SystemVerilog学习之基本语法4(随机化Randomization)
- [mathematical notes] radian
- Linux server development, SQL statements, indexes, views, stored procedures, triggers
- misc ez_usb
- Info | webrtc M97 update
- Live broadcast platform source code, foldable menu bar
- paddlepaddle 29 无模型定义代码下动态修改网络结构(relu变prelu,conv2d变conv3d,2d语义分割模型改为3d语义分割模型)
- Rust versus go (which is my preferred language?)
- 2022 simulated examination question bank and online simulated examination of tea master (primary) examination questions
- The principle and implementation of buffer playback of large video files
猜你喜欢

The charm of SQL optimization! From 30248s to 0.001s

Jenkins remote build project timeout problem

今日现货白银操作建议

Operation suggestions for today's spot Silver

Qt学习27 应用程序中的主窗口

通信设备商,到底有哪些岗位?
![[Stanford Jiwang cs144 project] lab4: tcpconnection](/img/fd/704d19287a12290f779cfc223c71c8.png)
[Stanford Jiwang cs144 project] lab4: tcpconnection

numpy中dot函数使用与解析

Idea add class annotation template and method template
![[GUET-CTF2019]虚假的压缩包](/img/a2/7da2a789eb49fa0df256ab565d5f0e.png)
[GUET-CTF2019]虚假的压缩包
随机推荐
Wx is used in wechat applet Showtoast() for interface interaction
Info | webrtc M97 update
[Stanford Jiwang cs144 project] lab4: tcpconnection
2022焊工(初级)判断题及在线模拟考试
[UVM practice] Chapter 2: a simple UVM verification platform (2) only driver verification platform
Problem solving: unable to connect to redis
芯片资料 网站 易特创芯
IPv4 exercises
[Matlab] Simulink 自定义函数中的矩阵乘法工作不正常时可以使用模块库中的矩阵乘法模块代替
pytest+allure+jenkins环境--填坑完毕
Thinkcmf6.0安装教程
[2022 ciscn] replay of preliminary web topics
[advanced digital IC Verification] command query method and common command interpretation of VCs tool
After the interview, the interviewer roast in the circle of friends
Tianqing sends instructions to bypass the secondary verification
【斯坦福计网CS144项目】Lab4: TCPConnection
Regular e-commerce problems part1
Gslx680 touch screen driver source code analysis (gslx680. C)
[Stanford Jiwang cs144 project] lab3: tcpsender
buuctf misc USB