php幽梦小说网站源码,自适应多终端,无需数据库站点。

配置include/config.php文件网站信息即可
<?php
$Root=array (
'title' => '幽梦搜书',
'site' => '海量影视高清极速在线免费观看',
'logo' => '/public/image/logo.png',
'keywords' => '搜剧TV,高清视频,影视资源大全,影视在线观看,影视搜索引擎',
'describe' => '搜剧TV是拥有海量优质、高清免费视频网站,给您全新的“悦享品质”在线观看体验。',
'icp' => '20152'
);
伪静态规则
location / {
index index.php index.html;
if (!-e $request_filename){
rewrite ^/list/(.+).html$ /theme/list.php?type=$1;
rewrite ^/book/(.+)_(.+).html$ /theme/book.php?uid=$1&id=$2;
rewrite ^/log/(.+)_(.+).html$ /theme/catalog.php?uid=$1&id=$2;
rewrite ^/read/(.+)_(.+)/(.+).html$ /theme/read.php?uid=$1&id=$2&pid=$3;
rewrite ^/(.+).html /theme/$1.php;
}
}

