虚拟目录的配置
Posted 一不小心上天了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了虚拟目录的配置相关的知识,希望对你有一定的参考价值。
一:C:\Windows\System32\drivers\etc\hosts
20行 取消注释 添加 127.0.0.1 www.blog.com
二:D:\myphp2017\Apache24\conf\httpd.conv
取消#74
248注释
取消#505
三:
在D:\myphp2017\Apache24\conf\extra\httpd-vhosts最后添加:
<VirtualHost *:80>
DocumentRoot "D:/myphp2017/blog"
ServerName www.blog.com
DirectoryIndex index.php
<Directory "D:/myphp2017/blog/" >
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
以上是关于虚拟目录的配置的主要内容,如果未能解决你的问题,请参考以下文章