On 06/11/12 12:54, Peter Humphrey wrote:
> OK, I've added that to 00_default_settings.conf. I'm not sure whether I 
> need rewrites though.
> 

Your htaccess had some rewrite rules, that's why I suggested it.


> The fog is beginning to clear. Thanks.
> 
> I still can't get server-side includes to work though. Modules.d/*.conf 
> don't include a suitable module. I've added "-D INCLUDE" to APACHE2_OPTS 
> in /etc/conf.d/apache2.conf but it seems not to be enough.

We have this working here.. let's see.

First of all, I see you have the mime module compiled; that's good. Is
it enabled? You should have,

  LoadModule mime_module modules/mod_mime.so

in httpd.conf.

Once the mime module is enabled, everything in
modules.d/00_mod_mime.conf will be processed (it's conditional on the
existence of the mime module).

Then, you should add or uncomment the following in 00_mod_mime.conf:

  # Filters allow you to process content before it is sent to the
  # client
  #
  # To parse .shtml files for server-side includes(SSI):
  # (You will also need to add "Includes" to the "Options"
  # directive.)
  AddType text/html .shtml
  AddOutputFilter INCLUDES .shtml

That will enable server-side includes in *.shtml files, assuming you
also add "Includes" to the relevant "Options" directive.

If you need server-side includes for other types of files, it isn't
recommended[1], but you can add additional "AddOutputFilter" directives
for each type of file you'd like SSI to work with.



[1] http://httpd.apache.org/docs/2.2/howto/ssi.html

Reply via email to