I include mod_headers and mod_rewrite in my http.config, removing # from the line.
LoadModule headers_module modules/mod_headers.so LoadModule rewrite_module modules/mod_rewrite.so
Do I need to enable something else, or is the error included .htaccess?
.htaccess.
RewriteEngine On RewriteRule ^(.*?)\.x$ /$1.php [L] <IfModule mod_headers.c> <filesMatch "\.(x)$"> Header set foo "baa" </filesMatch> </IfModule>
Thanks in advance!
source share