我正在尝试使用子域进行网站预览
例如
我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
我有什么选择?
答案 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
),该标头可能会提示您。