当前位置:网站首页>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

边栏推荐
- Idea add class annotation template and method template
- 知识点滴 - 关于苹果认证MFI
- Wx is used in wechat applet Showtoast() for interface interaction
- [mathematical notes] radian
- Is the test cycle compressed? Teach you 9 ways to deal with it
- Explore Cassandra's decentralized distributed architecture
- 芯片 设计资料下载
- [GUET-CTF2019]虚假的压缩包
- [Stanford Jiwang cs144 project] lab4: tcpconnection
- C language flight booking system
猜你喜欢
随机推荐
Idea add class annotation template and method template
buuctf misc USB
《动手学深度学习》(四) -- 卷积神经网络 CNN
misc ez_ usb
[performance pressure test] how to do a good job of performance pressure test?
pytest+allure+jenkins环境--填坑完毕
The configuration that needs to be modified when switching between high and low versions of MySQL 5-8 (take aicode as an example here)
芯片 设计资料下载
IPv4 exercises
Pytorch parameter initialization
Open source ecosystem | create a vibrant open source community and jointly build a new open source ecosystem!
Numbers that appear only once
2022年茶艺师(中级)考试试题及模拟考试
Six methods of flattening arrays with JS
Jenkins remote build project timeout problem
C语言航班订票系统
Figure out the working principle of gpt3
Explore Cassandra's decentralized distributed architecture
Visualization Document Feb 12 16:42
Route jump in wechat applet







![[SUCTF 2019]Game](/img/9c/362117a4bf3a1435ececa288112dfc.png)
