gpt4 book ai didi

apache - WAMP 中不同端口上的多个虚拟主机

转载 作者:行者123 更新时间:2023-12-02 03:30:59 25 4
gpt4 key购买 nike

所以我有这个问题......

我过去使用 WAMP 并设置了完美运行的虚拟主机,但现在我遇到了我从未预见到的事情。

我正在尝试这样做:

通过http://localhost访问C:\wamp\www

通过 http://localhost:8080 访问 D:\somethingelse或 http://something.dev

我更喜欢使用正确的 http://something.dev ,因为工作站点是 http://something.co ,这样我就可以将它们分开。

我已遵循指南并阅读了论坛帖子,但到目前为止我所能做的就是:

通过http://localhost访问C:\wamp\www或 http://something.dev

通过 http://localhost:8080 访问 D:\somethingelse或 http://something.dev:8080

有人知道你会如何做到这一点吗?这是我的虚拟主机代码:

<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot "C:\wamp\www"
ServerName localhost
ServerAlias www.localhost.com
ErrorLog "logs/localhost-error.log"
CustomLog "logs/localhost-access.log" common
</VirtualHost>

<VirtualHost *:8080>
ServerAdmin webmaster@something
DocumentRoot "D:/something/www"
ServerName something.dev
ServerAlias www.something.dev
ErrorLog "logs/something-error.log"
CustomLog "logs/something-access.log" common
<directory "D:/something/www">
Options Indexes FollowSymLinks
AllowOverride all
Order Allow,Deny
Allow from all
</directory>
</VirtualHost>

在 httpd.conf 中我有这个

Listen *:80
Listen *:8080

我的主机文件正在运行,并将这两个文件都指向 127.0.0.1

(我想这样做的原因是,当我在我的机器上编码时,我使用 http://something.dev ,但我运行 Livereload Windows,并在同一本地网络上的 iPhone 和 iPad 上同时测试我的网站,但没有对 iOS 相当于主机文件的任何访问。它还允许我通过路由器上的端口转发仅向互联网开放服务器的特定部分。)

最佳答案

我想你已经解决了这个问题。不管怎样,分享一些关于如何在 Wamp 中设置多个虚拟主机的好信息是件好事。这对我有用:

http://www.kristengrote.com/blog/articles/how-to-set-up-virtual-hosts-using-wamp

就我而言,我使用端口 8080 和 8181。8080 重定向到 c:\wamp\www\myfolder 下的子文件夹,而 8181 重定向到根 c:\wamp\www。

为了使 8181 工作,我必须编辑 httpd-vhosts.conf、hosts(在\drivers\etc 文件夹中)和 httpd.conf。

在 httpd.conf 中,我的 Apache 正在监听:

Listen 8080
Listen 8181

我也取消注释:

Include conf/extra/httpd-vhosts.conf

我的根指向

DocumentRoot "c:/wamp/www/myfolder"

根目录配置为:

<Directory "c:/wamp/www">
Options Indexes FollowSymLinks
AllowOverride All
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
Allow from localhost
</Directory>

并添加:

<VirtualHost *:8181>
DocumentRoot "C:\wamp\www"
ServerName name-of-my-fake-server
</VirtualHost>

在httpd-vhosts.conf中我设置了:

NameVirtualHost *:8181

在主机(c:\windows\system32\drivers\etc)中我添加了:

127.0.0.1       localhost
127.0.0.1 name-of-my-fake-server #My Test Site

这样做,我现在有两个端口工作 8080 和 8181:所以 8080 指向目录 "c:\wamp\www\myfolder" ,另一个端口 8181 指向我的根文件夹 “c:\wamp\www\”

关于apache - WAMP 中不同端口上的多个虚拟主机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9641026/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com