联系官方销售客服
1835022288
028-61286886
在 URL规则中,设置有 共享栏目与内容 和 产品类型,两个属于同一类别,都是 共享栏目与内容
在两个规则中,内容页都自定义了规则,分别是 myurl 以及 producturl
在常规栏目中调用的是 myrul规则, 在产品页中,调用的是producturl,现在发现, 同样能使用 myurl 的规则打开
在rewrite.php 中是这样写的:
if (CMSURI) { $myfile = WRITEPATH . 'myid/' . md5(CMSURI) . '.txt'; if (is_file($myfile)) { $id = file_get_contents($myfile); if ($id) { return [ CMSURI => 'index.php?c=show&id=' . $id, // 这里写内容的地址 ]; } } }