whois / testwhois.php 404错误

时间:2018-07-18 14:45:42

标签: php whois

我在控制器中检查此代码是否存在域:

public function check_domain($domain)
    {
        if ( checkdnsrr($domain, 'A') ) {
          echo 0;//not available
         }
         else {
          echo 1;
         }
    }

我使用ajax调用此函数,如下所示:

$.ajax({
                url: "main/check_domain/"+$('#domain').val()+"."+$('#tld').val(),
                type: "POST",               
                success: function (data) {
                    //alert(data);
                    if(data){
                    $('#verif').hide();
                    $('#reg').show();
                    }
                },
                error:function(data){
                  //alert(JSON.stringify(data));
                  alert('error');
                }
        });

在我的网络窗口中,我还看到testwhois.php文件的404错误。我究竟做错了什么? whois.php file

0 个答案:

没有答案