首页 > 代码库 > 虚拟目录配置

虚拟目录配置

相当于路径更换别名而已

<IfModule dir_module>    #相当于欢迎界面,没有的时候需要制定某一文件去进行显示    DirectoryIndex index.html index.htm index.php    #你站点的别名    Alias /songjs "E:/the_third_grade/Apache_workspace"    <Directory E:/the_third_grade/Apache_workspace>    Order allow,deny    Allow from all    </Directory></IfModule>

在httpd.conf文件中更改

虚拟目录配置