最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

htaccess - want to rewrite an URL in wordpress

programmeradmin1浏览0评论

i want rewrite some urls in wordpress

from http://localhost/wordpress/my-page/2/

to http://localhost/wordpress/my-page/part-2/

anyone can help? Now i am using something like this but it not working.

    function rewrite_url()
{
    add_rewrite_rule(
        '^(my-page)/([^/]*)/?', 
        'index.php?pagename=$matches[1]&my-page=$matches[2]',
        'top'
    );
}
add_action('init', 'rewrite_url');
发布评论

评论列表(0)

  1. 暂无评论