当前位置:   article > 正文

Thinkcmf6.0安装教程_thinkcmf本地安装

thinkcmf本地安装

1.去官网下载thinkcmf / ThinkCMF--6.0

2. 去 thinkcmf / ThinkCMF企业门户解决方案-->下载

 3.然后把第二步文件合并到第一步哪里

4.用phpstudy创建网站

配置好nginx文件

  1. location / {
  2. index index.php index.html index.htm;
  3. #如果请求既不是一个文件,也不是一个目录,则执行一下重写规则
  4. if (!-e $request_filename)
  5. {
  6. #地址作为将参数rewriteindex.php上。
  7. rewrite ^/(.*)$ /index.php?s=$1;
  8. #若是子目录则使用下面这句,将subdir改成目录名称即可。
  9. #rewrite ^/subdir/(.*)$ /subdir/index.php?s=$1;
  10. }
  11. }
  12. location /api/ {
  13. index index.php index.html index.htm;
  14. #如果请求既不是一个文件,也不是一个目录,则执行一下重写规则
  15. if (!-e $request_filename)
  16. {
  17. #若是子目录则使用下面这句,将subdir改成目录名称即可。
  18. rewrite ^/api/(.*)$ /api.php?s=$1;
  19. }
  20. }
  21. location ~* ^\/upload\/.+\.(html|php)$ {
  22. return 404;
  23. }
  24. location ~* ^\/plugins\/.+\.(html|php)$ {
  25. return 404;
  26. }
  27. location ~* ^\/themes\/.+\.(html|php)$ {
  28. return 404;
  29. }

5.启动安装数据库

6.安装成功后删除安装程序

composer remove thinkcmf/cmf-install

设置调试模式:

1.把.example.env复制一分 名字修改为.env

2.然后留下第一行其余的全部删除;

伪静态处理:

  1. location / {
  2. if (!-e $request_filename){
  3. rewrite ^(.*)$ /index.php?s=$1 last; break;
  4. }
  5. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/291269
推荐阅读
相关标签
  

闽ICP备14008679号