Home >Backend Development >PHP Tutorial >apache configuration virtual directory, apache virtual directory_PHP tutorial

apache configuration virtual directory, apache virtual directory_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:58:55811browse

apache configuration virtual directory, apache virtual directory

#虚拟目录配置
<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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/976453.htmlTechArticleapache configuration virtual directory, apache virtual directory #Virtual directory configuration IfModule dir_module DirectoryIndex index.html index.htm index.php Alias ​​/htdocs "E:/htdocs" Directory E:/htdocs Ord...
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