0

我在 Windows 7 上运行 XAMPP 1.7.3。我的问题是当我尝试从另一台计算机访问我的服务器(本地主机)时,服务器没有响应。例如,[在我的计算机上] 当我输入“ http://localhost ”时,我的页面就会出现。但是,当我尝试从我的计算机访问“ http://192.168.0.102 ”时,什么也没有发生。当我输入我的外部 IP 时,什么都没有显示,但是当将 HTTPS 添加到外部 IP 时,我的 Linksys WRT54GS 配置页面出现,要求输入密码。我已经尝试过端口转发和本地“静态 IP”,但没有运气,除了我的本地 IP 永远不会改变。谁能帮我?

4

1 回答 1

1

这是我配置 XAMPP 安装的方式。也许它会为你工作。

  • 打开 C:\xampp\apache\conf\extra\httpd-vhosts.conf

  • 为您正在运行的每个站点添加一个 VirtualHost 块:

阿帕奇配置

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    DocumentRoot C:/path/to/website/files
    ServerName exampledomain.dev

    <Directory "C:/path/to/website/files">
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>
  • 向您的主机添加一行

    127.0.0.1 示例域.dev

  • 在连接计算机的主机文件上:

    192.168.0.102 示例域.dev

您可以使用 ctrl+r 轻松访问主机文件并运行
notepad %SYSTEMROOT%\system32\drivers\etc\hosts

于 2010-06-30T17:37:52.903 回答