我在线购买了一台服务器,并安装在(点击一下,我没有配置任何东西)LAMP。 我现在需要使用php创建一个动态页面,但如果创建一个文件" test.php"使用以下代码:
<?php
echo "Hello!";
?>
当我连接到&#34; http://serverIP/test.php&#34;而不是向我显示一个空白页面,上面写着&#34;你好!&#34;它不断将test.php作为文件下载到我的计算机上!
请注意:&#39; test.php&#39;是/ var / www / html与index.html和许多其他.html文件正常工作。 如果我键入&#34; php -v&#34;在命令行中它说安装了php 7.0.22-0ubuntu0.16.04.1。 当我输入&#34; a2enmod php7.0&#34;它说&#34;模块php7.0 alredy启用&#34;。 使用LAMP,我安装了Ubuntu 16.04和Apache 2.4.18(Ubuntu)。
我是个新手,所以请帮助我...我一直在寻找解决方案3天。
这是我的/etc/apache2/apache2.conf文件(没有所有评论):
Mutex file:${APACHE_LOCK_DIR} default
PidFile ${APACHE_PID_FILE}
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 5
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
HostnameLookups Off
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
Include ports.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
AccessFileName .htaccess
<FilesMatch "^\.ht">
Require all denied
</FilesMatch>
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
IncludeOptional conf-enabled/*.conf
IncludeOptional sites-enabled/*.conf
#the following lines are what I added
LoadModule php7_module modules/libphp7.so
AddType application/x-httpd-php .php
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
顺便说一句,我看不到一个名为&#34; modules&#34;的文件夹。在&#34; / etc / apache2&#34;
答案 0 :(得分:0)
您尚未加载模块
LoadModule php7_module
modules/libphp7.so
答案 1 :(得分:0)
事实证明LAMP正在使用nginx而不是Apache ...问题已解决here