[php]apache虚拟主机配置
生活随笔
收集整理的這篇文章主要介紹了
[php]apache虚拟主机配置
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、所謂虛擬主機的配置,即url與磁盤目錄的綁定
2、在httpd.conf中查詢Virtual host,發現有注釋說明需要在conf/extra/httpd-vhosts.conf中進行配置。
3、模板:
1 <VirtualHost 127.0.0.1:80> 2 DocumentRoot "d:/myweb" 3 DirectoryIndex indx.html index.thm index.php 4 <Directory/> 5 Options FollowSymLinks 6 #不許別人修改自己頁面 7 AllowOverride None 8 #訪問權限 9 Order allow,deny 10 Allow from all 11 </Directory> 12 </VirtualHost>?
轉載于:https://www.cnblogs.com/fantasy01/p/4151135.html
總結
以上是生活随笔為你收集整理的[php]apache虚拟主机配置的全部內容,希望文章能夠幫你解決所遇到的問題。