标题几乎总结了它。我正在通过'httpd'安装Apache运行 Fedora 18 64位。我的Apache运行得很好,但我的PHP似乎不起作用。我很确定我已经在我的机器上安装了它(Linux新手)。
我在我的/var/www/html/
目录中创建了一个'test.php'文件,其中包含代码:<?php phpinfo(); ?>
但它没有显示它应该的方式,它只是将文本打印到我的浏览器。
所以我认为PHP没有在我的Apache配置中设置。有人可以对此有所了解并就如何使其发挥作用提出一些建议吗?
提前致谢!
编辑,这是我的httpd.config文件:
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
答案 0 :(得分:8)
yum install php
PHP需要自己安装。它不是一个apache模块,只需在没有先安装PHP的情况下启用它。
答案 1 :(得分:7)
你可能有一些问题他们之一就是你没有为Apache定义“.php”索引
喜欢这个
<IfModule mime_module>
AddType text/html .php .phps
</IfModule>
请参阅本教程install Apache and php
答案 2 :(得分:1)
我通过重新安装httpd&amp;来解决了这个问题。 php两者。然后php文件正在执行。
答案 3 :(得分:0)
显然,PHP是作为一个包安装的,但是通过一个模块解释为apache:viz; mod_php的。这是一个猜想,我刚刚发现它是一种嵌入HTML的方法。
答案 4 :(得分:0)
自这个原始问题及其答案出现以来,发生了很多变化。从Fedora 32和Apache(httpd)2.4.46开始,
mod_php已弃用,因为FPM现在默认与httpd一起使用 事件模式。 mod_php仅在显式启用或httpd时使用 切换到前叉模式
([{sic] from /etc/httpd/conf.d/php.conf
)
换句话说,不再启用mod_php。如果要在Fedora下使用来自Apache的PHP,请安装php-fpm并默认将其作为* .php文件的处理程序。