前端如何重定向

重定向有多种实现方式,选择哪种取决于你的具体需求和场景:

1. 服务器端重定向(推荐)

HTTP 状态码重定向

复制代码
// Node.js/Express
app.get('/old-url', (req, res) => {
  res.redirect(301, '/new-url'); // 301 永久重定向
  // 或
  res.redirect(302, '/new-url'); // 302 临时重定向
});

// PHP
header('Location: /new-url', true, 301);
exit();

// Apache (.htaccess)
Redirect 301 /old-url /new-url

状态码说明

  • 301 Moved Permanently:永久重定向(SEO友好)

  • 302 Found:临时重定向

  • 307 Temporary Redirect:临时重定向(保持请求方法)

  • 308 Permanent Redirect:永久重定向(保持请求方法)


2. 客户端 JavaScript 重定向

常用方法

复制代码
// 方法1:最常用(会在历史记录中留下记录)
window.location.href = 'https://example.com/new-url';

// 方法2:替换当前历史记录(用户不能返回)
window.location.replace('https://example.com/new-url');

// 方法3:assign() 方法
window.location.assign('https://example.com/new-url');

带延迟的重定向

复制代码
// 3秒后重定向
setTimeout(() => {
  window.location.href = '/new-page';
}, 3000);

条件重定向

复制代码
// 基于某些条件重定向
if (userLoggedIn) {
  window.location.href = '/dashboard';
} else {
  window.location.href = '/login';
}

3. HTML 元标签重定向

复制代码
<!-- 5秒后重定向 -->
<meta http-equiv="refresh" content="5; url=https://example.com/new-page">

4. 框架特定的重定向

React Router

复制代码
import { useNavigate, Navigate } from 'react-router-dom';

// 方式1:在组件中使用
function MyComponent() {
  const navigate = useNavigate();
  
  useEffect(() => {
    navigate('/new-route');
  }, []);
  
  return <div>重定向中...</div>;
}

// 方式2:使用 Navigate 组件
function RedirectComponent() {
  return <Navigate to="/new-route" replace />;
}

Vue Router

复制代码
// 在组件方法中
this.$router.push('/new-route');
// 或
this.$router.replace('/new-route'); // 不记录历史

// 在路由守卫中
router.beforeEach((to, from, next) => {
  if (to.path === '/restricted') {
    next('/login');
  } else {
    next();
  }
});

5. 选择指南

何时使用服务器端重定向

  • SEO 优化(搜索引擎会更新索引)

  • 性能更好(减少客户端处理)

  • HTTP 到 HTTPS 重定向

  • 域名变更或 URL 结构更改

何时使用客户端重定向

  • 需要条件逻辑(根据用户状态决定)

  • 单页应用(SPA)内部导航

  • 表单提交后的跳转

  • 需要用户交互后的跳转

何时使用 HTML 元重定向

  • 简单的静态页面重定向

  • 维护页面或建设中的跳转


6. 最佳实践示例

完整的条件重定向

复制代码
// 检查用户认证状态并重定向
function checkAuthAndRedirect() {
  const isAuthenticated = checkUserAuth();
  const currentPath = window.location.pathname;
  
  if (!isAuthenticated && currentPath !== '/login') {
    // 未登录且不在登录页,重定向到登录页
    window.location.replace('/login?redirect=' + encodeURIComponent(currentPath));
  } else if (isAuthenticated && currentPath === '/login') {
    // 已登录但在登录页,重定向到首页或目标页
    const redirectTo = new URLSearchParams(window.location.search).get('redirect');
    window.location.href = redirectTo || '/dashboard';
  }
}

安全的开放重定向防护

复制代码
// 避免开放重定向漏洞
function safeRedirect(url) {
  const allowedDomains = ['example.com', 'trusted-site.com'];
  const targetHostname = new URL(url, window.location.origin).hostname;
  
  if (allowedDomains.includes(targetHostname) || targetHostname === window.location.hostname) {
    window.location.href = url;
  } else {
    // 不允许的重定向,跳转到安全页面
    window.location.href = '/error?message=invalid_redirect';
  }
}

总结推荐

  • 首选服务器端重定向(特别是 301),对 SEO 友好

  • SPA 内部使用框架路由(React Router/Vue Router)

  • 条件跳转使用 JavaScriptwindow.location.replace()

  • 避免开放重定向漏洞,始终验证目标 URL

根据你的具体技术栈和需求选择合适的重定向方式。

相关推荐
GIS遥遥2 小时前
如何用 Cesium 实现楼栋单体化?前端 WebGIS 实战教程
前端·javascript·cesium·三维gis开发
三小河2 小时前
React 插槽(Slot)完全指南:从基础到实战的灵活组件通信方案
前端·javascript·面试
ghfdgbg2 小时前
12. AOP(记录日志)
前端
我命由我123452 小时前
微信小程序 - 页面返回并传递数据(使用事件通道、操作页面栈)
开发语言·前端·javascript·微信小程序·小程序·前端框架·js
一水鉴天2 小时前
整体设计 定稿 备忘录仪表盘方案 之1 初稿之8 V5版本的主程序 之2: 自动化导航 + 定制化服务 + 个性化智能体(豆包助手)
前端·人工智能·架构
vortex53 小时前
【Web开发】从WSGI到Servlet再到Spring Boot
前端·spring boot·servlet
于谦3 小时前
git提交信息也能自动格式化了?committier快速体验
前端·javascript·代码规范
小高0073 小时前
React 避坑指南:彻底搞定不必要的重新渲染
前端·javascript·react.js
浩浩酱3 小时前
【TS】any的问题及与unknown的区别
前端·typescript