無法在 Ubuntu 14.04 中正常運作 Apache

無法在 Ubuntu 14.04 中正常運作 Apache

我面臨一個問題。我正在嘗試啟動 Apache 伺服器,但它沒有按預期工作。我正在使用以下命令來啟動本地伺服器。

sudo /opt/lampp/lampp start

但它給了以下訊息。

Starting XAMPP for Linux 5.6.23-0...
XAMPP: Starting Apache...fail.
XAMPP:  Another web server is already running.
XAMPP: Starting MySQL...ok.
XAMPP: Starting ProFTPD...ok.

我的問題是,當我嘗試在 htdocs 中執行任何專案時,它會拋出以下錯誤。

Not Found

The requested URL /test/string.php was not found on this server.

Apache/2.4.7 (Ubuntu) Server at localhost Port 80

在這裡我可以運行localhost/phpmyadmin但無法運行htdocs資料夾內的專案。在這裡,我還需要運行htdocs資料夾中存在的那些項目。

答案1

只需簡單地運行此命令到終端

sudo /etc/init.d/apache2 stop

在那之後

/opt/lampp/lampp/ start

確保您授予 htdocs 資料夾適當的權限。

相關內容