Simple question.
Do browsers cache PHP generated CSS and script files automatically, just like CSS/JS files?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the URL remains the same, and there aren’t hints in the HTTP responses to tell the browser otherwise, they can be cached.
If the URL includes dynamic information, the browser probably won’t be able to take advantage of caching.
Changing the URL by adding a timestamp as a dummy parameter (e.g.
http://host/myfile.php?t=17279273) is one of the ways you can prevent caching since the browser sees the slight change as a new resource.