0

最近、LAMP がプリインストールされた DigitalOcean ドロップレットを作成しました。自分のウェブサイト (index.php を含む) を /var/www にアップロードしました

Apache は It Works! を返すだけです。/index.php を自分の URL に手動で追加する必要があります。

私が試したこと:

  1. 「DirectoryIndex index.php」を含む.htaccessファイルを作成
  2. apache2.confDirectoryIndex index.phpへの追加
  3. dir.conf で最初に index.php を設定します
  4. index.html を作成しても、それは表示されませんでした。

編集: ここに私の apache2.conf ファイルがあります: http://pastebin.com/BMgiNdiD

4

1 に答える 1

1

次の構成がありません:

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
    DirectoryIndex index.php index.pl index.cgi index.asp index.shtml index.html index.htm \
               default.php default.pl default.cgi default.asp default.shtml default.html \
               default.htm home.php home.pl home.cgi home.asp home.shtml home.html home.htm
</IfModule>
于 2014-01-27T19:00:24.683 に答える