Debian

Apache 未在 Debian 8 上執行

  • February 4, 2020

我正在嘗試在新安裝的 Debian 發行版上安裝 LAMPP 伺服器,當我在 Web 瀏覽器上鍵入 localhost 時,在查看 Apache 站點時遇到問題。我已經做了一天的研究,但我仍然找不到我的問題所在。

我已經安裝了這些軟體包apt-get -y install apache2 mysql-server php5 php5-mysql php-pear php5-gd

當我跑步時systemctl start apache2systemctl start mysql我會變得活躍並按照應有的方式跑步。

但是,當我嘗試通過打開瀏覽器並輸入 localhost 或 127.0.0.1 來檢查 apache 是否正常工作時,Apache Debian 預設頁面沒有出現。我也嘗試過安裝 XAMPP,但是當我啟動所有服務時,只有 postgresql 開始執行。

我在瀏覽器上執行 localhost 時收到的消息:

您無權訪問此伺服器上的 /。Apache/2.4.10 (Debian) 伺服器在 127.0.0.1 埠 80

任何人有任何建議或知道解決方案嗎?

將行號 153-157 替換為以下程式碼apache2.conf

<Directory />
  Options Indexes FollowSymLinks MultiViews
  AllowOverride All
  Order allow,deny
  allow from all
  Require all granted
</Directory>

然後做/etc/init.d/apache2 restart

引用自:https://unix.stackexchange.com/questions/307020