我想从其他系统运行 localhost php 网站。我能够通过子文件夹链接将网站运行为http://192.168.1.102/website
. 但我希望它作为主站点运行http://website
。
我们有什么办法可以做到这一点。
我尝试在主机文件中添加以下内容,但没有奏效。
主机:
http://192.168.1.102/website website
我还尝试执行以下操作:
主机:
192.168.1.102 website
httpd-vhosts.conf
<VirtualHost *:80>
DocumentRoot e:/wamp/www/website/
ServerName website
</VirtualHost>
这里的 DocumentRoot 路径是其他电脑上的路径。