Hello, I try to rewriting URL with .htaccess and I have one problem. Now it's work when I removed cache in the browser. But if my page try to see other persons and need to remove they cache? What about solution? can I use?
2 DAYS
<FilesMatch ".(xml|txt|css|js)$">
Header set Cache-Control "max-age=172800, proxy-revalidate"
</FilesMatch>
1 MIN
<FilesMatch ".(html|htm|php)$">
Header set Cache-Control "max-age=60, private, proxy-revalidate"
</FilesMatch>
Or something like that? pelase help me.