当前的默认URL结构为:
www.example.com/page/2
www.example.com/page/3
我想将其更改为:
www.example.com/2
www.example.com/3
我要删除“页面/”。我该怎么办?
我试图在.htacces
上添加重定向规则,但是它不起作用。这是我用于分页链接的代码。
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $custom_query->max_num_pages,
'prev_text' => __('<i class="fa fa-chevron-left" aria-hidden="true"></i>'),
'next_text' => __('<i class="fa fa-chevron-right" aria-hidden="true"></i>'),
) );