本文介绍了ubuntu 上的 Apache 2 服务器无法解析 html 文件中的

问题描述

我在 Ubuntu 13.04 上安装了 apache2、

I installed apache2,

谷歌搜索我发现必须将 AddHandler...AddType... 行添加到 httpd.conf 但安装的版本没有此文件或至少在 /etc/apache2/

Googling I found that must add AddHandler... and AddType... lines to httpd.conf but the version installed doesn't have this file or at least can't find it in /etc/apache2/

代码示例:

<html>
<head></head>
<body>
    <?

推荐答案

开始工作.我的 apache 版本没有 httpd.conf,而是在 /etc/apache2/mods-enabled/

Got it to work. my version of apache doesn't have httpd.conf, instead has in /etc/apache2/mods-enabled/

编辑那个文件,发现这个:

editing that file, found this:

<FilesMatch ".+\.ph(p[345]?|t|tml)$">
    SetHandler application/x-httpd-

添加了以下几行:

<FilesMatch ".+\.html$">
    SetHandler application/x-httpd-

现在 代码有效.

now <? code works.

这篇关于ubuntu 上的 Apache 2 服务器无法解析 html 文件中的

09-19 04:14