We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, using set_header on codeigniter 3.x remove old cache-control tag. This 4 version not working or little bug not solutions.
working code; $this->response->removeHeader('Cache-Control') ->setHeader('Cache-Control', 'public, max-age=3600') ->setHeader('Pragma', 'cache');
response; Cache-Control:no-store, no-cache, must-revalidate Cache-Control:public, max-age=3600 Pragma:cache Pragma:no-cache
The text was updated successfully, but these errors were encountered:
Fixed in 5a84030
Sorry, something went wrong.
No branches or pull requests
Hello,
using set_header on codeigniter 3.x remove old cache-control tag.
This 4 version not working or little bug not solutions.
working code;
$this->response->removeHeader('Cache-Control')
->setHeader('Cache-Control', 'public, max-age=3600')
->setHeader('Pragma', 'cache');
response;
Cache-Control:no-store, no-cache, must-revalidate
Cache-Control:public, max-age=3600
Pragma:cache
Pragma:no-cache
The text was updated successfully, but these errors were encountered: