我正在开发一个移动网站,到目前为止我一直在 Chrome 中对其进行测试。现在我想在我的手机上测试它。
我正在使用 WAMP,在我的主机文件中我有以下内容:127.0.0.1 www.mysite.com
在我的 httpd.conf 中:
<Directory />
AllowOverride All
Require all granted
</Directory>
<VirtualHost *:80>
ServerName www.mysite.com
DocumentRoot "D:/Path/to/website/root"
DirectoryIndex index.php
</VirtualHost>
我应该在我的移动浏览器中输入什么来访问这个网站?我是否需要更改一些 WAMP 设置或其他任何内容?