Apache 虛擬目錄和預設首頁的設定

2021-09-06 13:22:00 字數 1008 閱讀 6805

apache虛擬目錄和預設首頁的設定,用apache伺服器的朋友必須要懂的。

虛擬目錄

1.找到"conf/httpd.conf" 檔案

2.在節點:裡增加

alias /aidd2008 "d:/php/web/aidd2008"

其中 aidd2008 是你想要訪問的虛擬目錄; d:/php/web/aidd2008 為物理路徑,以[/]代替[\]"

我們就在後面接著加:

複製** **如下:

options indexes multiviews

allowoverride none

order allow,deny

allow from all

(*)aidd2008 為虛擬目錄名稱,一般不用在名稱後加"/",若加入,每次都要在虛擬目錄後輸入"/"才能訪問** www.jbxue.com。

alias /gt "d:/php/gt" 

php_admin_flag safe_mode off

allowoverride authconfig

order allow,deny

allow from all

3.重啟apache

設定預設頁面

方法1 設定全域性的:

directoryindex index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.shtml index.phtml default.php

方法2 針對某一目錄可以這麼設定:

alias /aidd2008 "d:/php/web/aidd2008" 

options indexes multiviews

allowoverride none

order allow,deny

allow from all

directoryindex default.php

Apache虛擬目錄和預設首頁的設定

虛擬目錄 1.找到 conf httpd.conf 檔案 2.在節點 裡增加 alias aidd2008 d php web aidd2008 其中 aidd2008 是你想要訪問的虛擬目錄 d php web aidd2008 為物理路徑,以 代替 我們就在後面接著加 options index...

apache 下設定虛擬目錄和預設頁面

1.找到 conf httpd.conf 檔案 2.在httpd.conf裡面加了如下語句 alias anstyla e anstyla src web options indexes multiviews allowoverride none order allow,deny allow fro...

apache增加虛擬目錄

用記事本開啟 d xampp apache conf httpd.conf 在最後面加上 alias phpwebsite e phpwebsite allowoverride none options indexes order allow,deny allow from all 即增加了物理目錄...