我已经更改了/author/
缓动至/profile/
通过在文件中添加以下代码functions.php
:
function new_author_base() {
global $wp_rewrite;
$author_slug = \'profile\';
$wp_rewrite->author_base = $author_slug;
}
add_action(\'init\', \'new_author_base\');
由于谷歌正在抓取我的作者页面,现在我需要重定向旧的
/author/
指向新
/profile/
在
.htaccess
...
有什么想法吗?