“Express Cierrect” Kod odpowiedzi

Express Cierrect to URL

app.get("/where", (req, res) => {
   res.status(301).redirect("https://www.google.com")
}) //You need to include the status (301)
Batman

Express Cierrect

app.get('/', (req, res) => {
  res.redirect('/foo/bar');
});
garzj

Express JS przekierowuje do URL

window.location.href = "http://mywebsite.com/home.html";
Grepper

Express Cierrect to URL

app.get('/', (req, res) => {
  res.redirect('/about');
})
Busy Bison

Express Cierrect

res.redirect('https://google.com')
florinrelea

Express Cierrect

res.redirect('/foo/bar')
res.redirect('http://example.com')
res.redirect(301, 'http://example.com')
res.redirect('../login')
Defeated Dog

Odpowiedzi podobne do “Express Cierrect”

Pytania podobne do “Express Cierrect”

Więcej pokrewnych odpowiedzi na “Express Cierrect” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu