PHPCMS2007是比较流行的CMS系统之一,其功能强大,加之又是开源系统,深受广大站长的喜欢。但其很多功能还是不为大家所熟知。下面介绍如何修改PHPCMS2007生成文章路径的方法。
方法很简单,打开include/urlrule.inc.php修改相关的标记!
(1)按年月存放,即生成:it/200610/目录存放文件
打开include/urlrule.inc.php
把下面这段:
$urlrule['html']['item'][0] = array('example'=>'/2006/1010/article_1_2.html','index'=>'/{$year}/{$month}{$day}/{$prefix}{$itemid}.{$fileext}', 'page'=>'/{$year}/{$month}{$day}/{$prefix}{$itemid}_{$page}.{$fileext}');
改为:
$urlrule['html']['item'][0] = array('example'=>'/200610/article1012.html','index'=>'/{$year}{$month}/$prefix}{$day}{$itemid}.{$fileext}', 'page'=>'/{$year}{$month}/{$prefix}{$day}{$itemid}{$page}.{$fileext}');
(2)按年/月存放,即生成:it/2006/10/目录存放文件
打开include/urlrule.inc.php
把下面这段:
$urlrule['html']['item'][0] = array('example'=>'/2006/1010/article_1_2.html','index'=>'/{$year}/{$month}{$day}/{$prefix}{$itemid}.{$fileext}', 'page'=>'/{$year}/{$month}{$day}/{$prefix}{$itemid}_{$page}.{$fileext}');
改为:
$urlrule['html']['item'][0] = array('example'=>'/2006/10/article1012.html','index'=>'/{$year}/{$month}/$prefix}{$day}{$itemid}.{$fileext}', 'page'=>'/{$year}/{$month}/{$prefix}{$day}{$itemid}{$page}.{$fileext}');