重定向到 Ktor 中的绝对 URL

Posted

技术标签:

【中文标题】重定向到 Ktor 中的绝对 URL【英文标题】:Redirect to absolute URL in Ktor 【发布时间】:2019-12-18 00:26:22 【问题描述】:

我正在学习如何使用 ktor。对于特殊用例,我需要从我的 ktor 服务器重定向到不同的域。但是我现在不能让它正常工作。

作为一个简单的例子,我有一个 Application.kt

import io.ktor.application.*
import io.ktor.http.*
import io.ktor.response.*
import io.ktor.routing.*
import io.ktor.server.engine.*
import io.ktor.server.netty.*

fun main(args: Array<String>) 
    val server = embeddedServer(Netty, port = 8080) 
        routing 
         get("/") 
           call.respondRedirect("www.google.com")
        
    

server.start(wait = true)

除了它将我重定向到www.google.com之外,它会将我重定向到localhost:8080/www.google.com

【问题讨论】:

【参考方案1】:

想通了。您还需要设置协议。这行得通

call.respondRedirect("https://google.com/")

【讨论】:

以上是关于重定向到 Ktor 中的绝对 URL的主要内容,如果未能解决你的问题,请参考以下文章

.htaccess - 将所有 URL + 现有目录重定向到 index.php

如何在 ktor-client 中禁用重定向

302 重定向到相对 URL 是有效的还是无效的?

302 重定向到相对 URL 是有效的还是无效的?

Rails 使用 https 重定向

为啥这个 301 重定向会导致重定向到错误的 url?