在 CakePHP 中编辑 .htaccess 后出现内部服务器错误

发布于 2024-12-02 07:58:42 字数 432 浏览 1 评论 0原文

我想通过将此代码添加到 webroot/.htaccess 文件来禁用 CSS、图像和脚本的浏览器缓存:

<FilesMatch "(.)*.(css|js|jpg|jpeg|gif|png)$">
    Header set Cache-Control "max-age=1"
</FilesMatch>

这是错误:

内部服务器错误
服务器遇到内部错误或配置错误,无法完成您的请求。

当我向 CakePHP 中的每个 .htaccess 文件添加命令时,我收到此错误!

I want to disable the browser cache for CSS, images and scripts by adding this code to webroot/.htaccess file:

<FilesMatch "(.)*.(css|js|jpg|jpeg|gif|png)$">
    Header set Cache-Control "max-age=1"
</FilesMatch>

This is the error:

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

When I add a command to every .htaccess file in CakePHP, I receive this error!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深陷 2024-12-09 07:58:42

使用 FilesMatch

<FilesMatch "\.(css|js|jpg|jpeg|gif|png)$">

改进(注意我删除了“jpg”):

<FilesMatch "\.(css|js|jpe?g|gif|png)$">

Use FilesMatch:

<FilesMatch "\.(css|js|jpg|jpeg|gif|png)$">

Improved (note I removed "jpg"):

<FilesMatch "\.(css|js|jpe?g|gif|png)$">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文