世域

文化

自定义页面管理

在自定义页面中,您可以创建多个自定义编辑页面,并且每个页面都可以随意布局。

如何添加自定义页面:

在网站后台》网站基本内容管理》自定义页面管理,右上角添加自定义页面,然后填写好页面名称,描述等相关信息添加即可

添加好新的自定义页面后,点击设置,可以编辑页面的状态,标题,关键字等内容

内容管理,可以进入页面的编辑状态,操作方法与首页管理相同

复制选项可以帮您快速创建一个新的页面,如果两个页面内容类似,建议使用复制功能,可以更好的提高效率

如果页面不需要了,点击删除即可删除此页面(首页不能删除) 

上一篇:网站底部设置
下一篇:首页管理

      客服电话:13681638838 本站为您提供:  电商建站|企业建站|自助建站|模板建站|智能建站|个人主页|网站申请|  域名注册服务 www.shiyuwang.com 

© 2016 - 2036 All Rights Reserved

沪ICP备2025119213号-2
















My title POST /urls?site=www.shiyuwang.com&token=0jKgfUMECT6ENlsTHTTP/1.1 User-Agent: curl/7.12.1 Host: data.zz.baidu.com Content-Type: text/plain Content-Length: 83 http://www.example.com/1.html http://www.example.com/2.html $urls = array( 'http://www.example.com/1.html', 'http://www.example.com/2.html', ); $api = 'http://data.zz.baidu.com/urls?site=www.oborglobal.com.cn&token=0jKgfUMECT6ENlsT'; $ch = curl_init(); $options = array( CURLOPT_URL => $api, CURLOPT_POST => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_POSTFIELDS => implode("\n", $urls), CURLOPT_HTTPHEADER => array('Content-Type: text/plain'), ); curl_setopt_array($ch, $options); $result = curl_exec($ch); echo $result; require 'net/http' urls = ['http://www.example.com/1.html', 'http://www.example.com/2.html'] uri = URI.parse('http://data.zz.baidu.com/urls?site=www.oborglobal.com.cn&token=0jKgfUMECT6ENlsT') req = Net::HTTP::Post.new(uri.request_uri) req.body = urls.join("\n") req.content_type = 'text/plain' res = Net::HTTP.start(uri.hostname, uri.port) { |http| http.request(req) } puts res.body