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

apache configuration virtual directory, apache virtual directory_PHP tutorial

WBOY
Release: 2016-07-13 09:58:55
Original
813 people have browsed it

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
Copy after login

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...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template