# # For type maps (negotiated resources): # (This is enabled by default to allow the Apache "It Worked" page # to be distributed in multiple languages.) # AddHandler type-map var # # Filters allow you to process content before it is sent to the client. # # To parse .shtml files for server-side includes (SSI): # (You will also need to add "Includes" to the "Options" directive.) # AddType text/html .shtml AddOutputFilter INCLUDES .shtml # AddType позволяет слегка подправить mime.types, не редактируя его, # или объявить конкретные файлы имеющими определенный тип. # # Например, модуль PHP3 (этот модуль не является частью дистрибутива # сервера Apache), обычно использует следующие объявления: # AddType application/x-httpd-php3 .php3 AddType application/x-httpd-php3-source .phps # # Action lets you define media types that will execute a script whenever # a matching file is called. This eliminates the need for repeated URL # pathnames for oft-used CGI file processors. # Format: Action media/type /cgi-script/location # Format: Action handler-name /cgi-script/location