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.ini 和
wampmanager.tpl配置。
搜索
Menu.left,
1、wampmanager.ini下把www 目錄對應的filename改為自定義目錄
2、wampmanager.tpl下把${w_wwwDirectory}對應的filename改為自定義目錄
退出、重啟服務器,www目錄變成了Demo目錄,不過是亂碼