2016-04-27 2 views
1

вчера я играл с файлом http.conf моего сервера apache, чтобы скомпилировать php внутри html, он работал нормально, и все файлы открывались без проблем, однако сегодня он продолжает загрузку HTML-файлы, а не открывать их только файл PHP работает в данный моментHTML-файл загружается вместо открытия на сервере apache (AMPPS)

мой конф является следующим:

<IfModule mime_module> 
# 
# TypesConfig points to the file containing the list of mappings from 
# filename extension to MIME-type. 
# 
TypesConfig conf/mime.types 

# 
# AddType allows you to add to or override the MIME configuration 
# file specified in TypesConfig for specific file types. 
# 
#AddType application/x-gzip .tgz 
# 
# AddEncoding allows you to have certain browsers uncompress 
# information on the fly. Note: Not all browsers support this. 
# 
#AddEncoding x-compress .Z 
#AddEncoding x-gzip .gz .tgz 
# 
# If the AddEncoding directives above are commented-out, then you 
# probably should define those extensions to indicate media types: 
# 
AddType application/x-compress .Z 
AddType application/x-gzip .gz .tgz 
AddType application/x-httpd-php .php 
RemoveHandler .html .htm 
AddType application/x-httpd-php5 .html .htm 
AddType application/x-tar .tgz 
AddType image/x-icon .ico 
AddType application/vnd.wap.wmlc .wmlc 
AddType application/x-httpd-php .phtml .pwml .php5 .php4 .php3 .php2 .php .inc 
AddType text/vnd.wap.wml .wml 
AddType text/vnd.wap.wmlscript .wmls 
AddType text/vnd.wap.wmlscriptc .wmlsc 
AddType image/vnd.wap.wbmp .wbmp 

# 
# AddHandler allows you to map certain file extensions to "handlers": 
# actions unrelated to filetype. These can be either built into the server 
# or added with the Action directive (see below) 
# 
# To use CGI scripts outside of ScriptAliased directories: 
# (You will also need to add "ExecCGI" to the "Options" directive.) 
# 
AddHandler cgi-script .cgi .pl 

# For type maps (negotiated resources): 
#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 

пс «RemoveHandler .html .htm» строка - это одна из строк, которую я добавил вчера, поэтому t hat он компилирует php в html, я попытался удалить его, но все тот же.

+1

необходимо перезапустить (перезагрузить) апача после изменения, как это. – YvesLeBorg

+0

У меня возникла проблема, это // Приложение AddType/x-httpd-php .html .htm \\ пропало без вести и да, спасибо, что напомнили мне, что я перезагружаюсь каждый раз, когда я делаю изменения. Я не перезапускал –

+0

рад, что ты иди. Когда у вас есть шанс, напишите об этом в ответ и примите его. Помогает другим. – YvesLeBorg

ответ

0

я выяснил проблему, это // AddType применение/х-HTTPD-PHP .html .htm // отсутствовало

Смежные вопросы