Apache 在 IP 地址 /subdirectroy 处添加 VirtualHost

发布于 2024-11-27 12:10:08 字数 606 浏览 1 评论 0原文

我正在尝试配置 VirtualHost,以便可以访问 192.168.1.179/MYSITE。

当我使用此代码时:

<VirtualHost *:80>
        ServerName http://192.168.1.179.com
        DocumentRoot /usr/local/www/apache22/data/PI_Admin
        <Directory /usr/local/www/apache22/data/PI_Admin>
                Allow from all
        </Directory>
        RailsBaseURI /pi_admin
    <Directory /usr/local/www/apache22/data/PI_Admin/pi_admin>
        Options -MultiViews
    </Directory>

</VirtualHost>

它将整个 up 替换为我的文档根目录。 id 喜欢做的是 192.168.1.179/pi_admin,但这不起作用。

有什么建议吗?

Im trying to configure a VirtualHost so that I can go to 192.168.1.179/MYSITE.

When I use this code:

<VirtualHost *:80>
        ServerName http://192.168.1.179.com
        DocumentRoot /usr/local/www/apache22/data/PI_Admin
        <Directory /usr/local/www/apache22/data/PI_Admin>
                Allow from all
        </Directory>
        RailsBaseURI /pi_admin
    <Directory /usr/local/www/apache22/data/PI_Admin/pi_admin>
        Options -MultiViews
    </Directory>

</VirtualHost>

It replaces the entire up with my document root. What id like to do is 192.168.1.179/pi_admin, but that doesnt work.

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木落 2024-12-04 12:10:08

您的配置意味着您有一个 DNS 192.168.1.179.com,其中 /usr/local/www/apache22/data/PI_Admin 是该网站的“/”网址。

如果您使用基于 IP 的虚拟主机,请勿使用命名基本虚拟主机,也许只是使用默认虚拟主机(如果 HTTP 请求中使用的名称没有与任何命名的基本虚拟主机匹配,则将使用默认虚拟主机)。

Your configuration means you have a DNS 192.168.1.179.com with /usr/local/www/apache22/data/PI_Admin being the '/' url for this website.

Don't use named base virtualhosts if you use IP based ones, maybe simply use the default virtualhost (will be used if no names used in your HTTP requests match any named base virtualhost).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文