PHP 代码显示在浏览器中

PHP 代码显示在浏览器中

我在 Ubuntu 上全新安装了 LAMP 组件。以下安装已完成

apt-get install php
apt-get install php-mysql
apt-get install mysql-server
apt-get install apache2
apt-get install libapache2-mod-php7.0
apt-get install dolibarr
apt-get install php7.0 php5.6 php5.6-mysql php-gettext php5.6-mbstring php-xdebug libapache2-mod-php5.6 libapache2-mod-php7.0
apt-get install python-software-properties pkg-config software-properties-common

当我访问时<MyIP>/dolibarr/htdocs,显示的是 PHP 代码,但并未执行。

当我访问时<MyIP>/test.php,我得到了下面的 PHP 代码执行和 PHP 信息显示:

<?php
phpinfo();
?>

这个 test.php 和多利巴尔放置在/var/www

Apache 根目录设置/etc/apache2/sites-enabled/000-default.conf如下:

<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www

因为我想确保没有暗示 PHP 版本,所以我尝试了本教程并在 PHP 7.0 和 PHP 5.6 之间切换。

我被困在这里了。大家有什么想法吗?

答案1

在 Ubuntu 中,默认apache目录/var/www不是/var/www/html这样htdocsWindows,要解决您的问题请执行以下操作:

  1. dolibarr通过放置来生根所有文件和文件夹htdocs/var/www/dolibarr
  2. 然后从浏览器执行<MyIP>/dolibarr/index.php

相关内容