首页 > 解决方案 > 如何从子帖子中删除父 slug

问题描述

我需要一种方法来忽略子帖子中的父项。但是没有使用任何插件。

Coming: http://test.com/test-parent/test-child
Desired: http://test.com/test-child

标签: wordpress

解决方案


您将需要 Apache 的重写模块:mod_rewrite.

然后做这样的事情:

RewriteEngine on 
RewriteRule ^test-parent/(.*)$ $1

这里是mod_rewrite的官方文档:点击


推荐阅读