httpd conf 文件的多文档根
在下面的http-conf文件中,如何添加更多条目来添加bugzilla
,即,123.21.1.21转到我的网站,123.21.1.21/bugzilla指向/opt/bugzilla
<VirtualHost *:80>
DocumentRoot /var/www/html/web
ServerName Domainspace
</VirtualHost>
<Location "/">
</Location>
In the following http-conf file how to add on more entry to add bugzilla
i.e, 123.21.1.21 goes to my website and 123.21.1.21/bugzilla is pointed to /opt/bugzilla
<VirtualHost *:80>
DocumentRoot /var/www/html/web
ServerName Domainspace
</VirtualHost>
<Location "/">
</Location>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我前几天刚刚设置了 bugzilla,类似的情况。这是我的 httpd.conf,
后面是
I just set bugzilla up the other day, similar scenario. Here is my httpd.conf
followed by
使用
别名
。Use
Alias
.我知道这个问题已经得到解答,但这对我在 macOS 上有用
I know this is answered but this worked for me on macosx