摘要:
Server Software: web服务器软件及版本 Server Hostname: 表示请求的URL中的主机部分名称 Server Port: 被测试的Web服务器的监听端口 Document Path: 请求的页面路径 Document Length: 页面大小 Concurrency Level... 阅读全文
摘要:
Route::any('/{module}/{class}/{action}', function($module, $class, $action) { $ctrl = \App::make("\\App\\Http\\Controllers\\" . $module . "\\" . $class . "Controller"); return \App::call([$ct... 阅读全文
摘要:
给PHPStorm安装Laravel框架代码提示工具: 二、在config\app.php文件的“providers”下添加行: 三、下载并安装包 四、生成配置文件 阅读全文
摘要:
composer dump-autoload --optimize 阅读全文
摘要:
application文件夹下的类会自动加载,依赖topthink/think-orm composer.json配置 { "require": { "topthink/think-orm": "^0.2.0" }, "autoload": { "psr-4": { "app\\": "application" ... 阅读全文
摘要:
chattr -i .user.ini rm -rf .user.ini 阅读全文
摘要:
nginxserver { listen 192.168.1.111:80; server_name test.com; rewrite ^(.*)$ https://$host$1 permanent; } apache .htaccess <IfModule mod_rewrite.c> Opt 阅读全文
