我有一个网站,当前托管在 IP 地址 11.11.11.111(这是一个假地址,仅用于通信)。我可以通过 www.mydomain.com 成功访问该网站。我现在想要允许用户访问 m.mydomain.com。
该 url 需要使用相同的 IP 地址。它将托管在同一网络服务器上,但作为自己的应用程序。目前,我已使用我的 GoDaddy 帐户创建了新的 CNAME 记录。该记录具有以下属性:
CNAME
Host: m
Points To: @
在我的 Web 服务器上,我有一个名为“Mobile”的 Web 应用程序。此应用程序的站点绑定具有以下属性:
站点绑定
Type: http
Host Name: m.mydomain.com
Port: 60
IP Address: 11.11.11.111
当我在浏览器中键入“m.mydomain.com”时,我会看到原始网站。我没有看到移动版本。我做错了什么?
I have a web site that is currently hosted at IP address 11.11.11.111 (this is a fake address, just for communicating). I can successfully access the site via www.mydomain.com. I now want to allow a user to access m.mydomain.com.
This url needs to use the same IP Address. It will be hosted on the same web server, but as its own application. Currently, I have created a new CNAME record with my GoDaddy account. That record has the following properties:
CNAME
Host: m
Points To: @
On my web server, I have a web application called "Mobile". This application has a site binding with the following properties:
Site Binding
Type: http
Host Name: m.mydomain.com
Port: 60
IP Address: 11.11.11.111
When I type "m.mydomain.com" into my browser, I see the original website. I do not see the mobile version. What am I doing wrong?
发布评论
评论(1)
挖掘这个,但您使用的是非标准端口 60(标准 HTTP 端口是 80),因此很可能您只能通过以下网址访问您的网站:http://m.mydomain.com:60
digging this one up, but you're using non-standard port 60 (standard HTTP port is 80), so most likely you can only get to your site via the url: http://m.mydomain.com:60