httpd php不解析的解決方法:首先找到「AddType application/x-gzip .gz .tgz」;然後加入內容為「AddType application/x-httpd-php .php」並儲存即可。
推薦:《PHP影片教學》
apache 不解析php
對apache的參數,還是不夠理解。
1.找到:
AddType application/x-gzip .gz .tgz
在其下面加上:
AddType application/x-httpd-php .php //添加支持对php脚本解析
2. 找到:
<IfModule dir_module> DirectoryIndex index.html </IfModule>
把中間那一行改為:
DirectoryIndex index.html index.htm index.php //增加对php的索引
正常了。
另外,PHP編譯的時候,要呼叫apache這個模組, --with-apxs2=/usr/local/apache2/bin/apxs
以上是httpd php不解析怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!