2019-01-16 03:46:45 +00:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
|
|
|
|
// +----------------------------------------------------------------------
|
2021-03-16 02:34:52 +00:00
|
|
|
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
|
2019-01-16 03:46:45 +00:00
|
|
|
// +----------------------------------------------------------------------
|
2021-03-16 02:34:52 +00:00
|
|
|
// | Licensed ( https://opensource.org/licenses/mit-license.php )
|
2019-01-16 03:46:45 +00:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | Author: Devil
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
2021-07-18 15:42:10 +00:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | 路由设置
|
|
|
|
|
// +----------------------------------------------------------------------
|
2024-12-25 09:35:54 +00:00
|
|
|
$suffix = MyFileConfig('home_seo_url_html_suffix', '', 'html', true);
|
2019-01-16 03:46:45 +00:00
|
|
|
return [
|
2021-07-18 15:42:10 +00:00
|
|
|
// URL伪静态后缀
|
2024-12-25 09:35:54 +00:00
|
|
|
'url_html_suffix' => empty($suffix) ? 'html' : $suffix,
|
2019-01-16 03:46:45 +00:00
|
|
|
];
|
2021-07-20 15:45:54 +00:00
|
|
|
?>
|