Wordpress redirection eklentisi bunun için en iyi çözüm. Aynı zamanda bu linkten kaç kişi o adrese gitmiş bunun sayısını da gözlemleyebiliyorsun.
--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 23:44:48 -->-> Daha önceki mesaj 23:42:13 --
add_filter('author_rewrite_rules', 'no_author_base_rewrite_rules'); function no_author_base_rewrite_rules($author_rewrite) { global $wpdb; $author_rewrite = array(); $authors = $wpdb->get_results("SELECT user_nicename AS nicename from $wpdb->users"); foreach($authors as $author) { $author_rewrite["({$author->nicename})/page/?([0-9]+)/?$"] = 'index.php?author_name=$matches[1]&paged=$matches[2]'; $author_rewrite["({$author->nicename})/?$"] = 'index.php?author_name=$matches[1]'; } return $author_rewrite; }Fonksiyon dosyana ekleyip dener misin?