zdcms创建多站点操作步骤

zdcms创建多站点操作步骤

功能介绍:

后台创建多个站点,每个站点的数据表是独立的。

方便统一的后台来管理N个站点。

应用场景:

1、学校及分校站群管理

2、中英文多语言站点

3、行业多站系统

一、创建多站点

1、以宝塔服务器管理面板为例,创建一个新站点;

image

2、后台设置,多站点管理里面填写网站名称和域名

image

域名不要使用http和/符号,只能填写纯域名,格式是:xxx.com

web目录填写(1)中的根目录地址,要完整的绝对地址

3、填写Web目录点旁边的测试按钮,如下图提示目录正常后才能提交保存

image

4、提交保存,然后更新缓存

image

5、切换到更新缓存界面,生成站点配置文件

image

6、然后看到(2)中的路径中已经生成了index.php文件

7、把域名绑定好,再进入系统体检

image

8、没有问题就成功了,刷新页面,切换站点;切换后就是一个新的空内容站点,需要安装模块、创建栏目等操作。

说明:支持单独设置伪静态规则和分页规则,设置方法:

复制./config/rewrite.php到./新站点目录/config/rewrite.php
复制./config/page.php到./新站点目录/config/page.php
复制./config/page_mobile.php到./新站点目录/config/page_mobile.php


错误情况:

一、访问不了网站,提示打不开等情况

需要登陆后台执行系统更新-重新生成站点配置文件。

image

二、图标不显示解决方案

1、apache 在httpd.conf 尾部加上

LoadModule headers_module modules/mod_headers.so
<IfModule mod_headers.c>
# Make sure proxies don’t deliver the wrong contentHeader append Vary User-Agent env=!dont-vary
  <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css)$">
    Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
</IfModule>

2、Nginx 在主站的配置文件 nginx.conf  server项目内加上

location ~* \.(eot|ttf|woff|svg|otf|woff2)$ {
  add_header Access-Control-Allow-Origin *;
}

3、如果用了CDN的话,需要配置HTTP头

image


三、访问网站提示php把报错

Warning: require(): open_basedir restriction in effect. File(/www/wwwroot/xxxxx/index.php) is not within the allowed path(s): (/www/wwwroot/xxxxx/xxxxx/:/tmp/:/proc/) in /www/wwwroot/xxxxx/xxxxx/index.php on line 11

Warning: require(/www/wwwroot/xxxxx/index.php): failed to open stream: Operation not permitted in /www/wwwroot/xxxxx/xxxxx/index.php on line 11

Fatal error: require(): Failed opening required '/www/wwwroot/xxxxx/index.php' (include_path='.:/www/server/php/73/lib/php') in /www/wwwroot/xxxxx/xxxxx/index.php on line 11

这种表示网站目录权限开启了防跨站

bt面板为例:

image

或者手动删除网站根目录的文件:user.ini


评论