Apache-2.2
index.html 打開正常但 index.php 說 404 找不到頁面
可能重複:
我購買了新的 apache 伺服器 142.4.4.15
它打開 index.html 但無法打開 index.php
我安裝了 php、apache 和 mysql。
Apache 狀態顯示工作正常…。我在 Apache 中遺漏了他們的任何 php 配置…
請幫我…..
在你的 apache conf 文件中可能位於
/etc/httpd/conf/httpd.conf
你需要確保你有這條線:
DirectoryIndex index.html index.php
如果不添加 index.php 並重新啟動 apache。
您還需要確保您擁有:
Include /etc/httpd/mod_php.conf
或它所在的任何路徑。
此外,在那裡您可能想要關閉伺服器令牌。它將增加額外的安全層。
還要檢查您的 index.php 文件的權限,以確保它們與所有者和系統權限相匹配。如果不是,則適當地 chown 和 chmod 文件。
所有這些編輯都需要重新啟動 httpd。