Home  >  Article  >  php教程  >  apache配置虚拟目录,apache虚拟目录

apache配置虚拟目录,apache虚拟目录

WBOY
WBOYOriginal
2016-06-13 09:08:33953browse

apache配置虚拟目录,apache虚拟目录

#虚拟目录配置
<IfModule dir_module>
    DirectoryIndex index.html index.htm index.php
    Alias /htdocs "E:/htdocs" 
<Directory E:/htdocs>
    Order allow,deny
    Allow from all
</Directory>
</IfModule>

#然后再注销DocumentRoot
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn