Wie kann man PHP in Apache unter Linux Fedora aktivieren?

Der Titel bringt es auf den Punkt. Ich renneFedora 18 64-Bit mit Apache über "httpd" installiert. Ich habe meinen Apache gut laufen, aber mein PHP scheint nicht zu funktionieren. Ich bin ziemlich sicher, dass ich es auf meinem Computer installiert habe (neu bei Linux).

Ich habe eine 'test.php' Datei in meinem erstellt/var/www/html/ Verzeichnis mit dem Code:<?php phpinfo(); ?> Aber es wird nicht so angezeigt, wie es sollte. Es wird nur der Text in meinem Browser ausgedruckt.

Ich bin also der Meinung, dass PHP nicht in meiner Apache-Konfiguration oder so eingerichtet ist. Kann jemand etwas Licht ins Dunkel bringen und Vorschläge machen, wie dies funktioniert?

Danke im Voraus!

Edit, das ist meine httpd.config Datei:

ServerRoot "/etc/httpd"
Listen 80
Include conf.modules.d/*.conf
User apache
Group apache
ServerAdmin root@localhost

<Directory />
   AllowOverride none
   Require all denied
</Directory>

DocumentRoot "/var/www/html"

<Directory "/var/www">
   AllowOverride None    
   Require all granted
</Directory>

<Directory "/var/www/html">
   Options Indexes FollowSymLinks
   AllowOverride None
   Require all granted
</Directory>

<IfModule dir_module>
   DirectoryIndex index.html
</IfModule>

<Files ".ht*">
   Require all denied
</Files>

ErrorLog "logs/error_log"
LogLevel warn

<IfModule log_config_module>

   LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
   LogFormat "%h %l %u %t \"%r\" %>s %b" common

   <IfModule logio_module>
     LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
   </IfModule>

   CustomLog "logs/access_log" combined
</IfModule>

<IfModule alias_module>
   ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
</IfModule>

<Directory "/var/www/cgi-bin">
   AllowOverride None
   Options None
   Require all granted
</Directory>

<IfModule mime_module>
   TypesConfig /etc/mime.types
   AddType application/x-compress .Z
   AddType application/x-gzip .gz .tgz
   AddType text/html .shtml
   AddOutputFilter INCLUDES .shtml
</IfModule>

AddDefaultCharset UTF-8
MIMEMagicFile conf/magic
EnableSendfile on
IncludeOptional conf.d/*.conf

Antworten auf die Frage(4)

Ihre Antwort auf die Frage