搜索
幽梦小说无需数据库自动更新小说网站源码

幽梦小说无需数据库自动更新小说网站源码

程序分类:影视源码 源码编号:498 终端分类:电脑端 下载权限:20积分 点击次数: 下载积分:20

源码简介:

幽梦小说无需数据库自动更新小说网站源码,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;
 }
}