我在服务器上安装了xampp服务器,我不仅要从(http://localhost/folder/file.php)打开htdocs中的项目,还要打开其他计算机上的项目。例如:(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的所有子目录..但仍然没有!除非我已登录服务器,否则无法打开我的项目登录文件。提前谢谢!
答案 0 :(得分:7)
您需要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
,因为下次软件更新可能会丢失更改。您需要在den XAMPP / Apache文件夹中的site-available
内创建一个vHost。