How to check if a domain name is a CNAME in PHP

前端 未结 3 806
耶瑟儿~
耶瑟儿~ 2021-02-10 04:21

How do I check if the URL accessing the page is the original URL or if it\'s a CNAME record.

For example, I have a site domain.com. Users can setup a CNAME

3条回答
  •  太阳男子
    2021-02-10 04:58

    I think you have to query a DNS to know it, since this information does not usually come in request headers.

    Take a look at the dns_get_record and checkdnsrr functions in PHP documentation.

提交回复
热议问题