включить текст MIME типов / html в центах 7 - PullRequest
0 голосов
/ 01 февраля 2020

На моем веб-сайте отображается сообщение об ошибке Ресурс интерпретируется как таблица стилей, но передается с текстом MIME-типа / html: "". Я попытался включить тип MIME через файл php .conf, но это не так. за работой. Может кто-нибудь помочь мне, как я могу включить MIME-тип в centos 7

Вот мой php .conf код файла.

#
# The following lines prevent .user.ini files from being viewed by Web clients.
#
<Files ".user.ini">
    <IfModule mod_authz_core.c>
        Require all granted
    </IfModule>
    <IfModule !mod_authz_core.c>
       #Order allow,deny
       #Deny from all
       Allow from all
        Satisfy All
    </IfModule>
 </Files>
#
# Allow php to handle Multiviews
#
#AddHandler php5-script .php .phtml .html
AddHandler php7-script .php .phtml .html
AddType text/html .php
AddType text/javascript .js
#
# Add index.php to the list of files that will be served as directory indexes.
#
DirectoryIndex index.php
# mod_php options
<IfModule mod_php7.c>
    #
    # Cause the PHP interpreter to handle files with a .php extension.
    #
    <FilesMatch \.(php|phar)$>
        SetHandler application/x-httpd-php
    </FilesMatch>
    #
    # Uncomment the following lines to allow PHP to pretty-print .phps files as PHP source code:
    #
    <FilesMatch \.phps$>
        SetHandler application/x-httpd-php-source
 </FilesMatch>
    #
    # Apache specific PHP configuration options those can be override in each configured vhost
    #
    php_value session.save_handler "files"
    php_value session.save_path "/var/lib/php/session"
    php_value soap.wsdl_cache_dir "/var/lib/php/wsdlcache"
    #php_value opcache.file_cache "/var/lib/php/opcache"
</IfModule>
...