mod_headers not working

The Mask picture The Mask · Aug 29, 2011 · Viewed 21.7k times · Source

I enable mod_headers and mod_rewrite in my http.config removing the # from line.

LoadModule headers_module modules/mod_headers.so

LoadModule rewrite_module modules/mod_rewrite.so

I need enable more something or the error is on .htaccess?

.htaccess.

RewriteEngine On
RewriteRule ^(.*?)\.x$ /$1.php [L]
<IfModule mod_headers.c>   
   <filesMatch "\.(x)$">
        Header set foo "baa"
  </filesMatch>  
</IfModule> 

Thanks in advance!

Answer

Miguel Gil Mart&#237;nez picture Miguel Gil Martínez · Mar 26, 2014

Try loading the headers module with

sudo a2enmod headers 
sudo service apache2 restart