域到 XAMPP Apache

发布于 2024-07-14 21:01:06 字数 306 浏览 4 评论 0原文

我有一个带有静态 IP 的 WEB 服务器,安装在带有 XAMPP apache 的 Windows 上。 我在D盘创建一个目录WEBPROG,里面是我所有的网站程序。 我购买了一个域名并指向我的WEB服务器IP。 但我想直接指向 D:\WEBPROG,当我输入 www.mywebsite.com 时,它不会显示该网站。 我必须输入 www.mywebsite.com/WEBPROG 然后它就会出现。 我尝试了虚拟主机配置,但它似乎不起作用。 有人可以就此提出建议吗?虽然我搜索了很多网站以尝试他们的推荐,但它不起作用。

谢谢加德

I have a WEB server with static IP installed with Windows with XAMPP apache. I create a directory WEBPROG in D drive where it is all my websites program. I purchase a domain name and point to my WEB server IP. But I would like to point directly to the D:\WEBPROG and when I enter www.mywebsite.com it will not show the website. I have to enter www.mywebsite.com/WEBPROG then it will appear. I try the virtualhost configuration but It seem not working. Can someone advise on this though I have searched many websites for try their recommendation but it does not work.

Thanks

Gad

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

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

发布评论

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

评论(1

浴红衣 2024-07-21 21:01:06

这是 XAMPP (apache/conf/extra) 中 httpd-vhosts.conf 的豁免:

NameVirtualHost *:80

<VirtualHost *:80>
    DocumentRoot /www/docs/dummy-host.example.com
    ServerName dummy-host.example.com
    ServerAlias www.dummy-host.example.com
    ErrorLog @rel_logfiledir@/dummy-host.example.com-error_log
    CustomLog @rel_logfiledir@/dummy-host.example.com-access_log common
</VirtualHost>

使用此配置作为模板,并确保将 DocumentRoot 指定为 d:/webprog。 请注意,NameVirtualHost 是使域名与 VirtualHost 指令一起使用所需要的。

This is an exempt from the httpd-vhosts.conf in XAMPP (apache/conf/extra):

NameVirtualHost *:80

<VirtualHost *:80>
    DocumentRoot /www/docs/dummy-host.example.com
    ServerName dummy-host.example.com
    ServerAlias www.dummy-host.example.com
    ErrorLog @rel_logfiledir@/dummy-host.example.com-error_log
    CustomLog @rel_logfiledir@/dummy-host.example.com-access_log common
</VirtualHost>

Use this configuration as a template, and make sure you specify DocumentRoot to d:/webprog. Note that the NameVirtualHost is what you need to make domain names work with the VirtualHost directive.

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