如何使用子域进行网站预览?

时间:2019-04-16 15:54:58

标签: subdomain

我正在尝试使用子域进行网站预览 例如 我File -> new -> File -> Cocoa touch class -> #make it subclass of UIViewController and give it a unique name eg: abcVC和CNAME到https://www.sub.example.com

当我执行PING命令sub2.example2.com时。回复我,但我的导航器没有打开sub2.example2.com。

两个域都使用其他通配符,但我不想使用.htaccess

我有什么选择?

1 个答案:

答案 0 :(得分:0)

不要混淆/混用,PING的行为与HTTP不同,这就是为什么当您ping时,由于您正在向同一网站进行请求,所以您总是会得到响应服务器或负载平衡器。

关于HTTP请求,可能缺少server block/virtual host来处理对定义的HOST: sub2.example2.com的请求。

一旦定义了虚拟主机,就可以使用curl进行如下测试:

curl -I -H 'Host: sub.example.com' your-web-server.tld

检查返回的标头(选项-I),该标头可能会提示您。