Apache가 허용하도록 구성되지 않았다는 지시문 때문에 500 내부 서버 오류로 페이지를로드하고 있습니다.
AllowOverride를 all로 설정하고 .htaccess 파일을 포함하여 다음을 포함합니다.
<FilesMatch "\.(eot|ico|pdf|flv|jpg|jpeg|png|gif|svg|swf|ttf|woff)$">
Header set Cache-Control "max-age=31536000, public"
Header set Expires "Wed, 23 Apr 2014 17:00:01 UTC"
</FilesMatch>
/var/log/apache2/error.log에는 다음이 있습니다.
[Sat Jul 20 15:12:36 2013] [alert] [client 24.15.83.241] /home/jonathan/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration
Apache2가 'Header'지시문을 올바르게 처리하려면 무엇을 지정해야합니까?