试图为 wordpress 网站工作添加重写规则但没有乐趣
function wptuts_add_rewrite_rules() {
add_rewrite_rule('^dukebox/([0-9-]*)/?','index.php?pagename=dukebox&startdate=$matches[1]','top');
flush_rewrite_rules();
}
add_action( 'init', 'wptuts_add_rewrite_rules' );
我想要的是
http://www.mikekeelin.co.uk/dukebox/?startdate=2013-02-25
读书
http://www.mikekeelin.co.uk/dukebox/2013-02-25
也试过
index.php?p=85&startdate=$matches[1]','top');
但没有快乐
非常感谢任何帮助
谢谢