8月 5, 2019 - php开发 laravel 常用优化已关闭评论
laravel 常用优化
1, 压力测试、集成测试,系统测试,性能测试
2、 正式环境关闭debug,设置debug为false
开启OPcache
路由缓存:php artisan route:cache
[……]
1, 压力测试、集成测试,系统测试,性能测试
2、 正式环境关闭debug,设置debug为false
开启OPcache
路由缓存:php artisan route:cache
[……]
1:安装xdebug插件
这里以如下环境来说明,其他环境请根据提示操作:
操作系统:Windows 10
php版本:php-7.1.13-nts(32 bit)
下载:https://xdebug.org/docs/install
请根据自己的环境(php版本[……]
问题描述: 本地yii2, 使用了路由优化prettyUrl,
nginx配置:
try_files $uri $uri/ /index.php?$args;
没有用rewrite
当访问
[……]