这个做SEO的时候非常需要,以前从DEDECMS转战PHPCMS,最痛苦的就是设置伪静态,一直想设置 栏目名/文章ID.html 这样的规则,但是显然PHPCMS默认不提供,只提供最原始的 list-1-1.html ,show-1-1.html,这种URL对搜索引擎和用户都是不友好的(不符合百度搜索引擎指南中对URL友好的描述),哈哈,或者只是自己纠结。
如果非要以前非要这么设置的话,就得一条条手工加,没想到居然有一天自己也能破这个问题(其实只是个简单的读数据库的问题)。
第一步:PHPCMS后台设置规则(默认已经开启Apache伪静态)
第二部:生成.htaccess
把下面文件复制到文档,后缀改为PHP,放置在PHPCMS的根目录,运行http://admin.com/设置的文件.php,即可生成.htaccess文件
<?php define(‘PHPCMS_PATH‘, dirname(__FILE__).DIRECTORY_SEPARATOR); include PHPCMS_PATH.‘/phpcms/base.php‘; //pc_base::creat_app(); $db_config = pc_base::load_config(‘database‘); //读取配置文件 pc_base::load_sys_class(‘mysql‘, ‘‘, 0); pc_base::load_sys_class(‘param‘, ‘‘, 0); pc_base::load_model(‘content_model‘); $db=new mysql(); $db->open($db_config[‘default‘]); $pre = $db_config[‘default‘][‘tablepre‘]; //读取表前缀 $db->connect(); $catprefix = ‘list‘; $catrule .= "<IfModule mod_rewrite.c>\n"; $catrule .= "RewriteEngine on\n"; $catdata = $db->select(‘catid,catdir,parentid‘,"{$pre}category","type=0"); foreach($catdata as $item){ $catdir = $item[‘catdir‘]; $catid = $item[‘catid‘]; $parentid = $item[‘parentid‘] ? $item[‘parentid‘] : ""; if(trim($parentid)){ $parentdir = $db->select(‘catdir‘,"{$pre}category","catid={$parentid}")[0][‘catdir‘]; $catrule .= "RewriteRule ^{$parentdir}/{$catdir}/([0-9]+)-([0-9]+).html index.php?m=content&c=index&a=show&catid={$catid}&id=$2&page=$3\n"; } $catrule .= "RewriteRule ^{$catdir}/([0-9]+)-([0-9]+).html index.php?m=content&c=index&a=show&catid={$catid}&id=$2&page=$3\n"; } $catrule .= "RewriteRule ^{$catprefix}/([0-9]+)_([0-9]+).html index.php?m=content&c=index&a=lists&catid=$1&page=$2\n"; $catrule .= "</IfModule>\n"; file_put_contents(PHPCMS_PATH.‘/.htaccess‘,$catrule); /*RewriteEngine on RewriteRule ^content-([0-9]+)-([0-9]+)-([0-9]+).html index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 RewriteRule ^show-([0-9]+)-([0-9]+)-([0-9]+).html index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 RewriteRule ^list-([0-9]+)-([0-9]+).html index.php?m=content&c=index&a=lists&catid=$1&page=$2*/
时间: 2024-10-09 20:45:42