nginx的location ~ .*.(?:htm|html)${root jimei-admin expires -1;add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate"; }转换为apache
时间: 2023-02-21 16:14:26 浏览: 108
在 Apache 中,这段 Nginx 的配置可以转换为下面的形式:
```
<FilesMatch "\.(htm|html)$">
Header set Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate"
ExpiresActive On
ExpiresDefault "access plus 0 seconds"
</FilesMatch>
```
注意:Apache 中的 `Expires` 指令需要 mod_expires 模块的支持。如果未安装该模块,可以通过启用它来添加支持,或者使用其他方法(例如 mod_headers)来设置缓存控制头。
相关问题
nginx的location ~ .*.(?:htm|html)${root jimei-admin expires -1; }转换为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 模块并已启用。
nginx的location ~ .*.(?:htm|html)${root jimei-admin }转换为apache
Apache 的相应配置如下:
```
<Directory "/var/www/jimei-admin">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<FilesMatch "\.(htm|html)$">
Options -Indexes
Require all granted
</FilesMatch>
```
阅读全文