tpshop怎么Url目录让他少点

浏览:1154 发布日期:2017/09/01 分类:求助交流 关键字: 静态 tpshop
商品页是这样的
http://127.0.0.1/Home/Goods/goodsInfo/id/144.html
我想修改成http://127.0.0.1/goods/144.html
这样怎么修改求大神解答下

他默认的路由是这样的<?php

return array(
'URL_ROUTER_ON'   => true,      // 开启路由
'URL_MODEL'=>2, //
'URL_ROUTE_RULES'=>array(
        '/^manual_(\d+)$/' => 'Doc/Index/manual?id=:1',
        '/^developer_(\w+)$/' => 'Doc/Index/index?developer=:1',
        'manual_list'=>'Doc/Index/manual_list',
        'download'=>'Index/Index/download',
        'product'=>'Index/Index/product',

        'articleList'=>'Index/Article/articleList',
        '/^articleList_cat_id_(\d+)$/'=>'Index/Article/articleList?cat_id=:1',
        '/^article_id_(\d+)$/'=>'Index/Article/detail?article_id=:1',
    ),
'URL_HTML_SUFFIX'       =>  'html',  // URL伪静态后缀设置  默认为html  去除默认的 否则很多地址报错
'DEFAULT_MODULE'        =>  'Index',  // 默认模块
);
?>
最佳答案
评论( 相关
后面还有条评论,点击查看>>