Heim >php教程 >php手册 >关于ubuntu下安装完PHP+Apache后,无法解析php的解决方案

关于ubuntu下安装完PHP+Apache后,无法解析php的解决方案

WBOY
WBOYOriginal
2016-06-06 19:58:291978Durchsuche

根据 http://blog.csdn.net/renzhenhuai/article/details/12009595 安装完之后,html文件可以正常解析,php源码直接输出,不能被解析。 通常情况下是apache未加载php模块,通常情况下需要修改httpd.conf文件,但是在ubuntu下为apache2.conf文件 修改如下:

根据  http://blog.csdn.net/renzhenhuai/article/details/12009595

安装完之后,html文件可以正常解析,php源码直接输出,不能被解析。

通常情况下是apache未加载php模块,通常情况下需要修改httpd.conf文件,但是在ubuntu下为apache2.conf文件

修改如下:

设置
  LoadModule php5_module        /usr/lib/apache2/modules/libphp5.so
  AddType application/x-httpd-php .php
  AddType application/x-httpd-php-source .phps

/usr/lib/apache2/modules/libphp5.so换成你的路径。

如果apache2.conf中该项配置,直接加入即可。

然后重启apache即可 

sudo /etc/init.d/apache2 restart
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn