💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# document_root 配置静态文件根目录,与`enable_static_handler`配合使用。 ```php $server->set([ 'document_root' => '/data/webroot/example.com', 'enable_static_handler' => true, ]); ``` 设置`document_root`并设置`enable_static_handler`为`true`后,底层收到`Http`请求会先判断`document_root`路径下是否存在此文件,如果存在会直接发送文件内容给客户端,不再触发`onRequest`回调。 > 在`1.9.17`或更高版本可用 > 使用静态文件处理特性时,应当将动态`PHP`代码和静态文件进行隔离,静态文件存放到特定的目录