WordPress阻止add_rewrite_rule重定向

时间:2019-01-17 06:53:12

标签: php wordpress url-rewriting

在WordPress网站上,我希望从中获取内容

http://thesite.com/cars以显示http://thesite.com/cars/index

中的内容

我正在尝试使用以下重写规则进行操作:

add_rewrite_rule(
  'cars/?$',
  'index.php?page_type=cars&name=index',
  'top');

除了重定向到http://thesite.com/cars/index

以外,它均有效

有什么方法可以防止重定向发生?

0 个答案:

没有答案