11 2020 档案

摘要:RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /in 阅读全文
posted @ 2020-11-16 09:04 Cyber_nnno 阅读(220) 评论(0) 推荐(0)
摘要:安装 在phpstorm中请求一直报错,只能老老实实在项目文件夹cmd了 composer require okcoder/think5-apidoc dev-master 配置 官方文档说会在config目录里自动生成okcoder_doc.php,我的没有,只能自己创建了 <?php /** * 阅读全文
posted @ 2020-11-14 14:23 Cyber_nnno 阅读(1483) 评论(0) 推荐(0)
摘要:try_files $uri $uri/ /exploit/index.php?$query_string; if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } 阅读全文
posted @ 2020-11-13 16:39 Cyber_nnno 阅读(117) 评论(0) 推荐(0)
摘要:核心类(用到了模型) <?php /** * Created by PhpStorm. * User: Administrator * Date: 2020/11/11 * Time: 16:37 */ namespace app\common\controller; use app\model\C 阅读全文
posted @ 2020-11-13 13:03 Cyber_nnno 阅读(2717) 评论(4) 推荐(1)