500 Internal Server Error - Comando inválido 'Header' em .htaccess

3

Estou entrando no meu log de erros do servidor.

[Mon Jan 27 08:04:06 2014] [alert] [client x.x.x.x] /home/.../public_html/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration

E aqui está o meu simples .htaccess :

<IfModule mod_rewrite.c>
    Options -MultiViews
    php_flag display_startup_errors on
    php_flag display_errors on
    php_flag html_errors on
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^ silex.php/ [L]
</IfModule>

O que poderia estar errado?

    
por MikeOscarEcho 27.01.2014 / 14:10

2 respostas

10

Pode ser porque mod_headers não está ativado. Tente executar a2enmod headers para ativar o módulo.

    
por 27.01.2014 / 14:15
0

Você habilitou o apache mod_headers ?

a2enmod mod_headers

    
por 27.01.2014 / 14:16