Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 Laravel 项目,并将其放在 OpenLightSpeed 网络服务器上。
一切正常,但 gzip 不起作用!
光速缓存设置已启用,但在 8000 端口上仍未启用 gzip。
OpenLiteSpeed GZip 设置
GZip 在 Laravel 之外完美工作。
24小时后,我找到了解决方案
1- 将 APP_URL 设置为 laravel 公用文件夹:
APP_URL=http://example.com/project_path/public
2-在OpenLiteSpeed Console => Virtual Hosts => Example 选择查看按钮和Context选项卡中单击编辑按钮,然后在Header Operations字段中粘贴此代码:
OpenLiteSpeed Console => Virtual Hosts => Example
Context
Header Operations
Access-Control-Allow-Origin *
最后,重新启动 OpenLiteSpeed!