I'm trying to have Apache limit caching on certain pages served from a django application, but when I edit the .htaccess in the root folder to set the header cache control, I get an internal server error. My code:
asked 13 Feb '12, 17:13 jdotjdot |
You should be setting this in the httpd.conf file and not in an .htaccess file. You can also read what the internal server error is in the application log which is located in ~/logs/user/error_appname.log answered 13 Feb '12, 18:10 johns |