从 Android 发送请求时响应代码 301

Response Code 301 while sending request from Android

我需要帮助,我的应用程序运行良好,但在续订域名后,我开始收到错误 301。我的以下代码是否需要修复?虽然如果我使用 https://Google.com 和相同的代码,响应代码是 200。Hostgator 也无法找到要修复的问题。有人可以帮忙吗

Thread thread = new Thread(new Runnable() {
    @Override
    public void run() {
        try {
            URL url = new URL("http://innovativeapps.me");
            HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
            httpURLConnection.connect();
            int con_respone_code = httpURLConnection.getResponseCode();
            Log.i("Response Code: ", con_respone_code + "");
            Log.i("Error Message", httpURLConnection.getResponseMessage());
            httpURLConnection.disconnect();

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
});

thread.start();

如果我使用网络浏览器打开它,url 工作正常。

您的站点正在重定向到 https://innovativeapps.me。当您使用 http:// 架构时,它会重定向并 returns 一个 301 通知您需要更新您的 url.