Apache 解释不了PHP 导致浏览器出现源码而不是图形介面
我修改了两个就解决了:
在httpd.conf中找到: “AddType application/x-gzip .gz .tgz” 在该行下面添加
“AddType application/x-httpd-php .php”
再找继续找到:“DirectoryIndex index.html”,把此行修改成
“DirectoryIndex index.html index.htm index.php”
本文共 280 字,大约阅读时间需要 1 分钟。
Apache 解释不了PHP 导致浏览器出现源码而不是图形介面
我修改了两个就解决了:
在httpd.conf中找到: “AddType application/x-gzip .gz .tgz” 在该行下面添加
“AddType application/x-httpd-php .php”
再找继续找到:“DirectoryIndex index.html”,把此行修改成
“DirectoryIndex index.html index.htm index.php”
转载于:https://blog.51cto.com/damingzone/2347270