在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
以外,它均有效有什么方法可以防止重定向发生?