新洁卫浴

域名交易系统源码

价格:¥15VIP¥13.5SVIP¥12

购买数量: (库存:充足

分享商品可得佣金【0.75元】 点击参与

恵薅域名系统提供人性化的域名交易方式,帮助您更好的掌握域名出售的速度和价格,并为您提供更好的交易体验。

PHP必须是5.6的

搭建教程

导入数据库文件 data/domain.sql

数据库配置文件 config/config.php

后台 http://域名/admin

用户:admin 密码:130123


伪静态默认是Apache

Nginx伪静态:

location / {
rewrite vip(.*) /shop/view.php?str=$1 last;
rewrite ^/(.*)/search(.*).html /$1/index.php?str=$2 last;
rewrite ^/(.*)/view([0-9]*).html /$1/view.php?id=$2 last;
rewrite ^/(.*)/(.*)list(.*).html /$1/$2list.php?str=$3 last;
rewrite ^/(.*)/(.*)view(.*).html /$1/$2view.php?id=$3 last;
rewrite ^/goods/([0-9]*).html /goods/view.php?id=$1 last;
rewrite ^/news/([0-9]*).html /news/view.php?id=$1 last;
rewrite ^/shop/([0-9]*).html /shop/view.php?id=$1 last;
rewrite ^/(.*)/goods/([0-9]*).html /$1/goods/view.php?id=$2 last;
rewrite ^/(.*)/news/([0-9]*).html /$1/news/view.php?id=$2 last;
rewrite ^/(.*)/shop/([0-9]*).html /$1/shop/view.php?id=$2 last;
}