Pode ser porque mod_headers
não está ativado. Tente executar a2enmod headers
para ativar o módulo.
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?
Pode ser porque mod_headers
não está ativado. Tente executar a2enmod headers
para ativar o módulo.
Você habilitou o apache mod_headers
?
a2enmod mod_headers
Tags linux apache-2.2 ubuntu