Laravel静态化最佳实践

环境

php7.4
nginx1.17
mysql5.7
windows10

路线

  • 控制器返回视图时这么操作
    public function test(Request $request) {
        $view =  view('test')->render();
        Storage::disk('local')->put('views/' . $request->path(), $view);
        return $view;
    }
  • nginx配置这么写
location / {  
    root D:/wwwroot/demo/storage/app/views;
    index index.html;
    try_files $uri $uri/ $uri.html @default;
}
location @default {
    root D:/wwwroot/demo/public;
    index index.php;
    try_files $uri $uri/ /index.php$is_args$query_string;
}

这样就能在第一次访问时生成相应的静态网页,之后再访问时就会直接返回静态网页。

  • 进一步

实现过期删除、自动更新功能,大概就是获取views文件夹下的所有文件名,记录在案,然后定期清除,还可以主动发出请求触发更新,有空再写吧。

  • 认证状态

通常需要显示当前登录用户的头像,静态化后就不能显示了?当然可以。

比如,认证后保存用户数据到浏览器,通过js把当前状态更新到静态的html上。

你可能感兴趣的:(php,php-laravel,后端,laravel,php7)