无法连接到wildfly11中的远程主机

时间:2018-02-15 06:39:39

标签: wildfly-11

我们正在使用AWS windows wildfly 11应用程序。

我们能够在没有任何VPN连接问题的情况下访问应用程序。但是我们在没有VPN的情况下使用URL获取错误。

我们能够访问应用程序但无法在没有VPN连接的情况下登录,我们收到以下错误,即;远程错误的问题。

任何人都可以帮我解决问题。

function __construct(){
    $arr = require 'application/config/routes.php';
    foreach ($arr as $key => $val) {
        $this->add($key, $val);
    }

}

public function add($route, $params) {
    $route = '#^'.$route.'$#';
    $this->routes[$route] = $params;
}

public function match() {
    $url = trim($_SERVER['REQUEST_URI'], '/');
    foreach ($this->routes as $route => $params) {
        if (preg_match($route, $url, $matches)) {
            $this->params = $params;
            return true;
        }
    }
    return false;
}

public function run(){
    if($this->match()){
        $path = 'application\controllers\\'.ucfirst($this->params['controller']).'Controller';
        if(class_exists($path)){
          $action = $this->params['action'].'Action';
          if (method_exists($path, $action)){
                $controller = new $path($this->params);
                $controller->$action();
          }else{
            View::errorCode(404);
          }
        }else{
           View::errorCode(404);
        }
    }else{
        View::errorCode(404);
    }
}    

0 个答案:

没有答案