我有一个类似http://localhost/leneufbreton/achat-immobilier-neuf/programme-neuf/?ville=brest
的网址,我希望转换为http://localhost/leneufbreton/achat-immobilier-neuf/programme-neuf/brest
或http://localhost/leneufbreton/achat-immobilier-neuf/programme-neuf-brest
我试图使用add_rewrite_rule
,但没有任何事情发生。
这是我使用的代码操作:
function custom_rewrite_basic() {
add_rewrite_rule('^programme-neuf/([^/]*)/', 'programme-neuf/?ville=$matches[1]', 'top');
}
add_action('init', 'custom_rewrite_basic');
请问好吗?。
答案 0 :(得分:0)
尝试使用\
逃避美元符号add_rewrite_rule('^programme-neuf/([^/]*)/', 'programme-neuf/?ville=\$matches[1]', 'top');