6

我在服务器中安装了 xampp 服务器,我想不仅从 (http://localhost/folder/file.php) 打开 htdocs 中的项目,还希望通过其 ip 从其他计算机打开项目。示例:(192.168.1.210/folder/file.php)我该怎么做?我确实编辑了 httd.conf

<Directory/>
  Options FollowSymLinks
  AllowOverride None
  Order deny,allow
  Deny from all
  Allow from all
</Directory>

允许访问 xampp/htdocs 的所有子目录.. 但仍然没有!除非我登录服务器,否则我无法打开我的项目登录文件。提前致谢!

4

1 回答 1

8

您需要 Apache 中的虚拟主机,它至少侦听给定的 IP ( 192.168.1.210:80) 或任何 IP ( *:80):

<VirtualHost *:80>
    ServerName localhost
    DocumentRoot /var/www/some_app
</VirtualHost>

见:http ://httpd.apache.org/docs/2.2/vhosts/examples.html

请不要编辑httpd.conf,因为更改可能会在下一次软件更新时丢失。site-available您需要在 den XAMPP/Apache 文件夹中创建一个 vHost 。

于 2012-10-19T14:43:15.037 回答