聯系官方銷售客服
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, // 這里寫內容的地址 ]; } } }