Apache配置虚拟目录+Zend Studio访问

核能气质少年 提交于 2020-04-02 05:52:21

1 概述

Apache配置虚拟目录,然后可以通过Zend Studio的工程去访问,只需要修改Apache的httpd.conf文件.

2 修改httpd.conf

找到Apache安装目录下的httpd.conf,在末尾加上:

<IfModule dir_module>
    DirectoryIndex index.html intex.htm index.php
    Alias /alias path
    <Directory path>
        Options All
        AllowOverride None
        Require all granted
    </Directory>
</IfModule>

其中alias是别名,path是文件夹路径.
比如,这里设置了:

<IfModule dir_module>
    DirectoryIndex index.html intex.htm index.php
    Alias /111 D:/Desktop/111
    <Directory D:/Desktop/111>
        Options All
        AllowOverride None
        Require all granted
    </Directory>
</IfModule>

别名为111,路径在

D:/Desktop/111

最后重新Apache服务.

3 Zend Studio工程

进入Zend Studio新建一个工程:
在这里插入图片描述
工程名字要与上面的配置文件对应,放在相应的Location下.
在这里插入图片描述
补全index.php:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
把其中的<none>替换成localhost即可:
在这里插入图片描述
在这里插入图片描述
然后就可以访问了.
在这里插入图片描述

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!