0

我的 htaccess 顶部有这个简单的重定向,用于将 Wordpress 类别存档重定向到新页面。它适用于Firefox,但不适用于其他浏览器。如果我消除该类别,我会收到 404 错误。

Redirect 301 /category/forums-and-events/  /forums-and-events/

我已经清空了浏览器的缓存。我该怎么做才能让它工作?

4

1 回答 1

0

在 Wordpress 中,这适用于重定向到绝对 url 并避免 htaccess:

<?php
wp_redirect( $location, $status );
exit;
?>

$location 是指向的 url,$status 是 301(永久重定向)或 302(临时)

http://codex.wordpress.org/Function_Reference/wp_redirect

于 2013-07-08T15:18:55.163 回答