R raymond Active Member Feb 1, 2013 #1 Feb 1, 2013 #1 Just checked the release log and saw an update with this new feature: FileEtag directives have been fully supported. Does this mean we can now disable the Etags from the headers? If yes, how can we disable it? Last edited by a moderator: Feb 1, 2013
Just checked the release log and saw an update with this new feature: FileEtag directives have been fully supported. Does this mean we can now disable the Etags from the headers? If yes, how can we disable it?
N NiteWave Administrator Feb 1, 2013 #2 Feb 1, 2013 #2 in addition to apache's way http://httpd.apache.org/docs/2.2/mod/core.html#fileetag can set it at server level in GUI: lsws admin console->Server->Tuning->File ETag
in addition to apache's way http://httpd.apache.org/docs/2.2/mod/core.html#fileetag can set it at server level in GUI: lsws admin console->Server->Tuning->File ETag
R raymond Active Member Feb 1, 2013 #3 Feb 1, 2013 #3 Tried setting it at server level: lsws admin console->Server->Tuning->File ETag Already unchecked the 3 boxes and is still showing ETag. Did I miss anything else?
Tried setting it at server level: lsws admin console->Server->Tuning->File ETag Already unchecked the 3 boxes and is still showing ETag. Did I miss anything else?
N NiteWave Administrator Feb 1, 2013 #4 Feb 1, 2013 #4 the server's setting can be overwritten by settings in .htaccess any setting in .htaccess ? to be sure, in your .htaccess, you can put for example <Files "*.jpg"> FileETag None </Files> to remove etag.
the server's setting can be overwritten by settings in .htaccess any setting in .htaccess ? to be sure, in your .htaccess, you can put for example <Files "*.jpg"> FileETag None </Files> to remove etag.
R raymond Active Member Feb 1, 2013 #5 Feb 1, 2013 #5 Thanks, working now after adding FileETag None in htaccess.