帝国cms 使用SQL 如何批量修改内容页文件命名形式,元素模板为您解答
第一种,批量替换成time()格式
update phome_ecms_news set filename=CONCAT(time,id) where id>0;
第二种方式:MD5值的 这个个人感觉没啥意义,一般也不会用到
update phome_ecms_article set filename=CONCAT(md5(uniqid(microtime,id) where id>0;
第三种就是目录方式:
update phome_ecms_news set filename=CONCAT(id,'/index') where id>0; update phome_ecms_news set newspath='';
以上的格式是 https://www.ys720.com/demo/202002226/index.html
如果想直接使用 https://www.ys720.com/demo/202002226.html
命令是如下格式:
update phome_ecms_news set filename=CONCAT(id) where id>0; update phome_ecms_news set newspath='';
第四种方式date()格式:
update phome_ecms_news set filename=CONCAT(date,id) where id>0;
第五种就是公共信息ID选项了;也就是在目录批量替换中是没有的选项,具体如下:
update zuowenla_net_ecms_news set filename=CONCAT(10000100000,id) where id>0;
PS:注意以上所有的SQL命令 尾部 都是 id>0 0代表全部的意思,你也可以按照你想要的,比如ID>500就是500以上的文章变化;教程到此结束;