• for some reason all my headers have the pragma: no-cache is there a way this plugin can override that header as well?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Dan

    (@geekysoft)

    This is probably added by your web server. You can remove it in Apache by including Header unset Pragma in your configuration.

    Probably set by some stupid plugin (not the webserver)
    Adding to .htaccess

    
    <IfModule mod_headers.c>
    # fixes broken plugin blocking cache
    Header always unset Pragma
    </IfModule>
    
    • This reply was modified 4 years, 3 months ago by cantoute.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘pragma: no-cache’ is closed to new replies.