您可以将此添加到.htaccess
文件,它会将所有查找数字(作者ID)的作者请求重定向到主页:
#Disable Author Pages
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/$
RewriteCond %{QUERY_STRING} ^/?author=([0-9]*) [NC]
RewriteRule ^(.*)$ http://%{HTTP_HOST}/? [L,R=301,NC]
</IfModule>
PHP/Wordpress方式,您可以使用
Template Redirect:
function author_page_redirect() {
if ( is_author() ) {
wp_redirect( home_url() );
}
}
add_action( \'template_redirect\', \'author_page_redirect\' );