nginx的location ~ .*.(?:htm|html)${root jimei-admin expires -1; }转换为apache
时间: 2023-02-21 07:21:23 浏览: 102
nginx+apache
Apache 的等价配置如下:
```
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault "access plus -1 seconds"
<FilesMatch "\.(html|htm)$">
ExpiresDefault "access plus -1 seconds"
</FilesMatch>
</IfModule>
```
请注意,需要确保 Apache 已经安装了 mod_expires 模块并已启用。
阅读全文