1

at the moment, all of my .shtml files are being parsed by SSI. Some of these pages do not have SSI and it would be more efficient if they did not have to go through SSI. Is there anyway to specify a certain files or a group of files to be parsed and have the rest of it parsed instead of having ALL .shtml files parsed?

Thanks

Tereno
  • 153
  • 6

1 Answers1

1

From the Apache Doc:

All SSI-enabled files have to be parsed by Apache, whether or not there are any SSI directives included within the files.

Can't you just rename them to .html?

squillman
  • 37,883
  • 12
  • 92
  • 146
  • I could.. but that would mean diving into all the files that we have to change the appropriate links to reflect that change. So I was hoping for something less drastic. – Tereno Oct 22 '09 at 17:32