編碼的世界 / 優質文選 / 文明

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


2021年7月05日
-   

WampServer自定義網站根目錄 D盤新建了Demo文件夾(設定的網站根目錄),新建文本test.php,拓展名改為.php
輸入以下內容,如果成功,則輸出success。
<?php
echo "success";
?>

瀏覽器中輸入要訪問的地址:localhost/test.php,出現以下結果:
Not Found
The requested URL /test.php was not found on this server.
Apache/2.4.23 (Win64) PHP/5.6.25 Server at localhost Port 80

需要配置一下apache裏面的配置文件:
httpd.conf   和  httpd.vhosts.conf
打開後,搜索DocumentRoot更改路徑
${INSTALL_DIR}/www/  和  c:/wamp64/www/  改為d:/Demo(設定的網站根目錄)

重新啟動所有服務,就能夠訪問了


同時,要更改安裝包下面的wampmanager.iniwampmanager.tpl配置。

搜索Menu.left,
1、wampmanager.ini下把www 目錄對應的filename改為自定義目錄

2、wampmanager.tpl下把${w_wwwDirectory}對應的filename改為自定義目錄

退出、重啟服務器,www目錄變成了Demo目錄,不過是亂碼

熱門文章