在 CakePHP 中编辑 .htaccess 后出现内部服务器错误
我想通过将此代码添加到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 FilesMatch:
改进(注意我删除了“jpg”):
Use FilesMatch:
Improved (note I removed "jpg"):