0
체로키가 내 XML 파일에 특정 MIME 유형을 제공하게하고 싶습니다. 이제 모든 XML 파일에 대해 mimetype application/xml 만 제공합니다.특정 파일을 체로키의 특정 MIME 유형에 매핑하십시오.
아파치에서는 /etc/apache2/apache2.conf에 다음을 쓸 수 있습니다.
<directory dir>
AddType application/a a.xml
AddType application/b b.xml
AddType application/c c.xml
AddType application/d d.xml
</directory>
예를 들어 dir/a.xml은 항상 콘텐츠 유형 application/a와 함께 제공됩니다. 체로키에서 비슷한 것을 할 수 있을까요?