HTTP
Giả lập phản hồi 308 Permanent Redirect
The resource has been permanently moved. Like 301, but guarantees the HTTP method will NOT be changed.
Xem tài liệu tham khảo đầy đủ →1 Phản hồi HTTP
HTTP/1.1 308 Permanent Redirect Content-Type: application/json Date: Tue, 25 Feb 2026 12:00:00 GMT Location: https://example.com/new-location
2 Kiểm tra với curl
curl -i https://httpbin.org/status/308
3 Trả về 308 Permanent Redirect trong Framework của bạn
django
from django.http import HttpResponse
def my_view(request):
return HttpResponse(status=308) # Permanent Redirect
flask
from flask import Flask
app = Flask(__name__)
@app.route("/endpoint")
def my_endpoint():
return "", 308 # Permanent Redirect
fastapi
from fastapi import FastAPI
from fastapi.responses import Response
app = FastAPI()
@app.get("/endpoint")
def my_endpoint():
return Response(status_code=308) # Permanent Redirect
express.js
// Express.js
app.get('/endpoint', (req, res) => {
res.sendStatus(308); // Permanent Redirect
});
spring boot
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
@RestController
public class MyController {
@GetMapping("/endpoint")
public ResponseEntity<Void> myEndpoint() {
return ResponseEntity
.status(308) // Permanent Redirect
.build();
}
}
go net/http
package main
import "net/http"
func myHandler(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(308) // Permanent Redirect
}
ruby on rails
class MyController < ApplicationController
def my_action
head :permanent_redirect
end
end
asp.net core
// ASP.NET Core Minimal API
app.MapGet("/endpoint", () =>
Results.StatusCode(308) // Permanent Redirect
);