apache は php ファイルを解析できません
午後は Baidu で過ごしましたが、根本的な原因は php 拡張子がmissing: mod_php
インストール後に Apache を再起動するだけです。 (推奨学習: PHP プログラミングの入門から習熟まで )
yum install mod_php
その他のソリューション
追加で
AddType application/x-gzip .gz .tgz
が見つかりました以下:
AddType application/x-httpd-php .php //添加支持对php脚本解析
検索:
<IfModule dir_module> DirectoryIndex index.html </IfModule>
中央の行を次のように変更します:
DirectoryIndex index.html index.htm index.php //增加对php的索引
以上がPHPファイルが解析されないの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。