簡體   English   中英

如何從另一台計算機或設備訪問XAMPP虛擬主機?

[英]How to access XAMPP virtual host from another computer or device?

我想使用手機或其他計算機訪問虛擬主機,問題是我無法使用服務器名稱訪問站點,只能使用服務器的IP地址訪問站點。 我將端口更改為7777

當我嘗試www.tbs.com:7777/index.php時,我得到“ 無法訪問網站

虛擬主機配置:

<VirtualHost *:7777>
DocumentRoot "c:/xampp/htdocs/TBSApp"
ServerName www.tbs.com
ServerAlias tbs.com
ServerAdmin webmaster@localhost
<Directory "c:/xampp/htdocs/TBSApp">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    order allow,deny
    allow from all
</Directory>
</VirtualHost>

主機配置

192.168.120.9    www.tbs.com

您需要使用IP地址而不是域,因為它是本地主機配置。 要在所有設備上使用域,您需要設置DNS服務器。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM