向HTAccess中的URL添加段

时间:2013-06-03 作者:Astoria

我想编辑。WordPress。htaccess文件,按以下方式向URL添加段:

而不是:

http://www.example.com/mypost/
成功吧

http://www.example.com/coolstuff/mypost
我该怎么做?

1 个回复
最合适的回答,由SO网友:fuxia 整理而成

转到设置/永久链接,将静态字符串添加到永久链接结构:

enter image description here

无需触摸。htaccess。

更新以使WordPress发送哈希# 对于其后永久链接,您必须进行筛选pre_post_link 制作结构\'#%postname%\'post_link 要删除尾部斜杠,请执行以下操作:

add_filter( \'pre_post_link\', function( $permalink ){
    return \'#%postname%\';
});

add_filter( \'post_link\', function( $permalink ){
    return rtrim( $permalink, \'/\' );
});
注意,你会的ruin your site 和那些permalinks。

另请参见Change the link URL in default RSS feeds

结束