I would like to send no-cache headers if user is admin like current_user_can('administrator')
So browser will not cache some resurces. (In order to prevent ctrl + f5 everytime)
Near solutions also welcome.
During seaching I found that
RewriteCond %{HTTP:Cookie} !(wordpress_logged_in_|wp-postpass_) [NC]
is it possible to send no-cache header with above approach?