AddType application / x-httpd-php .php不呈现PHP

时间:2017-08-19 15:44:10

标签: php apache

添加此代码:

之后

AddType application/x-httpd-php .php

...
#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

C:\Apache24\bin\httpd.conf 下载我系统上的所有PHP页面而不是渲染它。

在此之前,PHP页面被解析为原始文本。

需要帮助!

2 个答案:

答案 0 :(得分:0)

有两个问题:

  1. application/x-httpd-php不是MIME类型,而是处理程序。这意味着您的指令必须为AddHandler而不是AddType

  2. application/x-httpd-php不是有效的处理程序。处理程序必须在字符串末尾包含PHP版本数字

完全假设,假设使用PHP 7.2版,

AddHandler application/x-httpd-php72 .php而不是
AddType application/x-httpd-php .php

答案 1 :(得分:0)

 select * from dbo.table1@sqlserver1

您可以访问此link