我正在尝试创建SEO友好的URL:http:///foto/linse2-at/linse2-at-schloss-altenhof/2618
对于这个:http://?fotograf=linse2 at?画廊=schloss altenhof和;img=2618
按照我的逻辑,这段代码应该可以工作:
add_rewrite_rule(
"foto/([^/]+)/([^/]+)/?([0-9]{1,})/?",
"index.php?fotograf=$matches[1]&gallery=$matches[2]&img=$matches[2]",
"top");
但生成的规则是(转储全局$wp\\u rewrite):
[foto/([^/]+)/([^/]+)/?([0-9]{1,})/?]=&燃气轮机;指数php?fotograf=&;画廊=&;img公司=
…这不起作用。
似乎缺少“$匹配项[1]”。
感谢您的投入!