您好,登錄后才能下訂單哦!
xampp虛擬主機如何配置?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
XAMPP有時候你需要一些頂級域名訪問方式來訪問你本地的項目也就是虛擬主機配置,這時候就需要配置虛擬主機,給你的目錄綁定一個域名,實現多域名綁定訪問。
一、修改httpd.conf
文件目錄 xampp => apache =>conf => httpd.conf
1.在文件內搜索 關鍵字“httpd-vhosts.conf”,找到如下字段
# Virtual hosts Include conf/extra/httpd-vhosts.conf//確保此段開頭沒有#
2.在文件內搜索關鍵字“AllowOverride All”,找到如下字段
<Directory "D:/xampp/cgi-bin"> AllowOverride All Options None Require all granted </Directory> //修改為 <Directory "D:/xampp/cgi-bin"> Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order allow,deny Allow from all </Directory>
3.搜索字段“DocumentRoot”,如下
DocumentRoot "D:/xampp/htdocs"//確保此處路徑是你要訪問的項目的根路徑 ps:可以配置特定的根路徑,比如: DocumentRoot "D:/www"
二、修改httpd-vhosts.conf
文件目錄 xampp => apache =>conf => extra => httpd-vhosts.conf
文件最后面可看到如下
##<VirtualHost *:80> ##ServerAdmin webmaster@dummy-host2.example.com ##DocumentRoot "D:/xampp/htdocs/dummy-host2.example.com" ##ServerName dummy-host2.example.com ##ErrorLog "logs/dummy-host2.example.com-error.log" ##CustomLog "logs/dummy-host2.example.com-access.log" common ##</VirtualHost>
1.用ip訪問
<VirtualHost 127.0.0.5:80>//設置訪問的ip ##ServerAdmin webmaster@dummy-host2.example.com DocumentRoot "D:/www"//你的項目文件目錄 ServerName testname.dev//此項目的名稱 ##ErrorLog "logs/dummy-host2.example.com-error.log" ##CustomLog "logs/dummy-host2.example.com-access.log" common </VirtualHost>
2.用ServerName訪問
<VirtualHost *:80> ##ServerAdmin webmaster@dummy-host2.example.com DocumentRoot "D:/www"//你的項目文件目錄 ServerName testname.dev//此項目的名稱,通過此名稱來訪問項目,還需配置hosts文件 ##ErrorLog "logs/dummy-host2.example.com-error.log" ##CustomLog "logs/dummy-host2.example.com-access.log" common </VirtualHost>
3.配置hosts文件
文件目錄 C:\Windows\System32\drivers\etc\hosts 在文件中加入 127.0.0.1 testname.dev
看完上述內容,你們掌握xampp虛擬主機如何配置的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。