SSI problema com http in centos

2

Meu httpd.conf é como abaixo.

- - -

AddType text/html .shtml .html
Options +Includes
AddOutputFilter INCLUDES .shtml .html

DirectoryIndex index.shtml index.html index.php index.html.var

- - -

E continua a mostrar no registo de depuração Opções + Inclui não foi definido.

[Thu Aug 14 01:14:26 2014] [warn] [client xxx.xxx.xxx.xxx] mod_include: 
Options +Includes (or IncludesNoExec) wasn't set, INCLUDES filter removed.

Minha versão do apache é 2.2 & correndo em Centos 6.

Qualquer conselho sobre como resolver esse problema.

    
por colido 14.08.2014 / 03:33

1 resposta

2

Encontrei uma correção.

Usou a hospedagem virtual para configuração para corrigir o problema:

<Directory "/var/www/html">
    Options Indexes MultiViews Includes
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot /var/www/html/
    ServerName dummy-host.example.com
    ErrorLog logs/dummy-host.example.com-error_log
    CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>

com minha configuração atual.

    
por 14.08.2014 / 06:20