Codeigniter Rss,网站地图,路由配置
_ _,今天在成果不错,完成了网站的三个功能,RSS订阅,自动写网站地图,与路由的配置,好了,现在一 一记录下来.
一、路由配置
在未设定路由时,路径是这样的
[php]
http://www.xiuxiandou.com/content/it/13533/硅谷传奇投资人讲述初创企业家易犯的4大错误
content =>controller,it=>method,13533=>id,硅谷传奇投资人讲述初创企业家易犯的4大错误=>title
http://www.xiuxiandou.com/content/it/13533/硅谷传奇投资人讲述初创企业家易犯的4大错误
content =>controller,it=>method,13533=>id,硅谷传奇投资人讲述初创企业家易犯的4大错误=>title
设置路由后,访问路径为:
[php]
http://www.xiuxiandou.com/content-it-13533-硅谷传奇投资人讲述初创企业家易犯的4大错误
http://www.xiuxiandou.com/content-it-13533-硅谷传奇投资人讲述初创企业家易犯的4大错误
其它的类似,路径配置为
[php]
/*sitemap使用*/
$route['content-(:any)-(:num)'] = "content/$1/$2";
/*前台页面显示路由*/
$route['content-(:any)-(:num)-(:any)'] = "content/$1/$2/$3";
/*RSS订阅路由*/
$route['feed-rss-(:any)'] = "feed/rss/$1";
/*博客路由*/
$route['blog-(:num)-(:any)'] = "blog/blogview/$1/$2";
$route['blog-blogtypes-(:any)']="blog/blogtypes/$1";
/**留言**/
$route['me'] = "indexs/me";
/**模板**/
$route["template"]="indexs/template";
/**今日更新**/
$route["indexs-(:any)"]="indexs/$1";
/*sitemap使用*/
$route['content-(:any)-(:num)'] = "content/$1/$2";
/*前台页面显示路由*/
$route['content-(:any)-(:num)-(:any)'] = "content/$1/$2/$3";
/*RSS订阅路由*/
$route['feed-rss-(:any)'] = "feed/rss/$1";
/*博客路由*/
$route['blog-(:num)-(:any)'] = "blog/blogview/$1/$2";
$route['blog-blogtypes-(:any)']="blog/blogtypes/$1";
/**留言**/
$route['me'] = "indexs/me";
/**模板**/
$route["template"]="indexs/template";
/**今日更新**/
$route["indexs-(:any)"]="indexs/$1";
二、RSS
在libraries目录下创建Rss.php文件,主要负责生成RSS格式的数据内容
[php]
/**
* Rss
*/
class Rss{
public function write_rss($in_datas){
$CI=& get_instance();
$CI->load->helper('xml');
$CI->load->helper('text');
$xml_str=""
."
if(!emptyempty($in_datas)){
$xml_str.="
."
.""
."".$in_datas["feed_url"].""
."
."
."
."
."
."
if(!emptyempty($in_datas["xml_datas"])){
foreach($in_datas["xml_datas"] as $k => $v){
foreach($v as $xml){
$xml_str.="
."
."".site_url("content-$k-$xml->id-".xml_convert($CI->mytool->get_title($xml->subject))).""
."
."
."
."
."";
}
}
}
$xml_str.="";
}
$xml_str.="";
return $xml_str;
}
}
/**
* Rss
*/
class Rss{
public function write_rss($in_datas){
$CI=& get_instance();
$CI->load->helper('xml');
$CI->load->helper('text');
$xml_str=""
."
if(!empty($in_datas)){
$xml_str.="
."
.""
."".$in_datas["feed_url"].""
."
."
."
."
."
."
if(!empty($in_datas["xml_datas"])){
foreach($in_datas["xml_datas"] as $k => $v){
foreach($v as $xml){
$xml_str.="
."
."".site_url("content-$k-$xml->id-".xml_convert($CI->mytool->get_title($xml->subject))).""
."
."
."
."
."";
}
}
}
$xml_str.="";
}
$xml_str.="";
return $xml_str;
}
}
2、RSS控制类
[php]
if(!defined('BASEPATH')) exit('No direct script access allowed');
/**
* 2013-2-25:RSS订阅
*/
class Feed extends CI_Controller{
public function index(){
$it=$this->mcom_model->query_Bywhere(mymsg::BT_ITINFO,array("riqi"=>$this->mytool->get_ymd()));
$game=$this->mcom_model->query_Bywhere(mymsg::BT_GAME,array("riqi"=>$this->mytool->get_ymd()));
$blog=$this->mcom_model->query_Bywhere(mymsg::BT_BLOG,array("riqi"=>$this->mytool->get_ymd()));
$movie=$this->mcom_model->query_Bywhere(mymsg::BT_MOVIE,array("riqi"=>$this->mytool->get_ymd()));
$book=$this->mcom_model->query_Bywhere(mymsg::BT_BOOK,array("riqi"=>$this->mytool->get_ymd()));
$in_datas["xml_datas"]=array("it"=>$it,"game"=>$game,"blog"=>$blog,"movie"=>$movie,"book"=>$book);
$this->_comm($in_datas);
}
public function rss(){
$this->load->helper('xml');
$this->load->helper('text');
$key= $this->uri->segment(3);
$db_table= $key=="it"?"bt_itinfo":"bt_$key";
$table_exist=$this->mcom_model->table_exists($db_table);
if($table_exist){
$in_datas["xml_datas"]=array($key=>$this->mcom_model->query_Bywhere($db_table,array("riqi"=>$this->mytool->get_ymd())));
$this->_comm($in_datas);
}else{
show_404();
}
}
private function _comm($in_datas){
$in_datas['feed_name'] = "休闲豆 RSS";
$in_datas['feed_url'] = base_url()."free";
$in_datas['page_description'] = '休闲豆,IT资讯,IT电子书,游戏种子,电影BT RSS';
$in_datas['creator_email'] = '1963612630@qq.com';
$in_datas['page_language']="zh-zn";
$out_datas["xml"]=$this->rss->write_rss($in_datas);
header("Content-Type: text/xml");
$this->load->view("rss",$out_datas);
}
}
if(!defined('BASEPATH')) exit('No direct script access allowed');
/**
* 2013-2-25:RSS订阅
*/
class Feed extends CI_Controller{
public function index(){
$it=$this->mcom_model->query_Bywhere(mymsg::BT_ITINFO,array("riqi"=>$this->mytool->get_ymd()));
$game=$this->mcom_model->query_Bywhere(mymsg::BT_GAME,array("riqi"=>$this->mytool->get_ymd()));
$blog=$this->mcom_model->query_Bywhere(mymsg::BT_BLOG,array("riqi"=>$this->mytool->get_ymd()));
$movie=$this->mcom_model->query_Bywhere(mymsg::BT_MOVIE,array("riqi"=>$this->mytool->get_ymd()));
$book=$this->mcom_model->query_Bywhere(mymsg::BT_BOOK,array("riqi"=>$this->mytool->get_ymd()));
$in_datas["xml_datas"]=array("it"=>$it,"game"=>$game,"blog"=>$blog,"movie"=>$movie,"book"=>$book);
$this->_comm($in_datas);
}
public function rss(){
$this->load->helper('xml');
$this->load->helper('text');
$key= $this->uri->segment(3);
$db_table= $key=="it"?"bt_itinfo":"bt_$key";
$table_exist=$this->mcom_model->table_exists($db_table);
if($table_exist){
$in_datas["xml_datas"]=array($key=>$this->mcom_model->query_Bywhere($db_table,array("riqi"=>$this->mytool->get_ymd())));
$this->_comm($in_datas);
}else{
show_404();
}
}
private function _comm($in_datas){
$in_datas['feed_name'] = "休闲豆 RSS";
$in_datas['feed_url'] = base_url()."free";
$in_datas['page_description'] = '休闲豆,IT资讯,IT电子书,游戏种子,电影BT RSS';
$in_datas['creator_email'] = '1963612630@qq.com';
$in_datas['page_language']="zh-zn";
$out_datas["xml"]=$this->rss->write_rss($in_datas);
header("Content-Type: text/xml");
$this->load->view("rss",$out_datas);
}
}
运行
[html]
生成结果如下
[php]
http://www.xiuxiandou.com/free
http://www.xiuxiandou.com/content-it-13533-硅谷传奇投资人讲述初创企业家易犯的4大错误
http://www.xiuxiandou.com/content-it-13533-硅谷传奇投资人讲述初创企业家易犯的4大错误
Qualys 创始人兼 CEO 菲利普`科尔图特
北京时间 2 月 25 日消息,据国外媒体报道,美国云计算安全公司…
]]>
....
http://www.xiuxiandou.com/free
http://www.xiuxiandou.com/content-it-13533-硅谷传奇投资人讲述初创企业家易犯的4大错误
http://www.xiuxiandou.com/content-it-13533-硅谷传奇投资人讲述初创企业家易犯的4大错误
Qualys 创始人兼 CEO 菲利普`科尔图特
北京时间 2 月 25 日消息,据国外媒体报道,美国云计算安全公司…
]]>
....
3、网站地图
网站地图主要根据sitemaps.xml协议拼写的XML,协议地址:http://www.sitemaps.org/protocol.html
1、加载libraries目录下的sitemaps.php类,内容如下
[php]
/**
* A class for generating XML sitemaps
*
* @author Philipp Dörner
* @version 0.7
* @access public
* @package sitemaps
*/
class Sitemaps
{
var $items = array();
function Sitemaps()
{
$CI =& get_instance();
$CI->config->load('sitemaps');
}
/**
* Adds a new item to the urlset
*
* @param array $new_item
* @access public
*/
function add_item($new_item)
{
$this->items[] = $new_item;
}
/**
* Adds an array of items to the urlset
*
* @param array $new_items array of items
* @access public
*/
function add_item_array($new_items)
{
$this->items = array_merge($this->items, $new_items);
}
/**
* Generates the sitemap XML data
*
* @param string $file_name (optional) if file name is supplied the XML data is saved in it otherwise returned as a string
* @param bool $gzip (optional) compress sitemap, overwrites config item 'sitemaps_gzip'
* @access public
* @return string
*/
function build($file_name = null, $gzip = NULL)
{
$CI =& get_instance();
$map = $CI->config->item('sitemaps_header') . "\n";
foreach($this->items as $item)
{
$item['loc'] = htmlentities($item['loc'], ENT_QUOTES);
$map .= "\t
$attributes = array("lastmod", "changefreq", "priority");
foreach($attributes AS $attr)
{
if(isset($item[$attr]))
{
$map .= "\t\t" . $item[$attr] . "$attr>\n";
}
}
$map .= "\t\n\n";
}
unset($this->items);
$map .= $CI->config->item('sitemaps_footer');
if( ! is_null($file_name))
{
$fh = fopen($file_name, 'a');//w
fwrite($fh, $map);
fclose($fh);
if($CI->config->item('sitemaps_filesize_error') && filesize($file_name) > 1024 * 1024 * 30)
{
show_error('Your sitemap is bigger than 10MB, most search engines will not accept it.');
}
if($gzip OR (is_null($gzip) && $CI->config->item('sitemaps_gzip')))
{
$gzdata = gzencode($map, 9);
$file_gzip = str_replace("{file_name}", $file_name, $CI->config->item('sitemaps_gzip_path'));
$fp = fopen($file_gzip, "a");//w
fwrite($fp, $gzdata);
fclose($fp);
// Delete the uncompressed sitemap
unlink($file_name);
return $file_gzip;
}
return $file_name;
}
else
{
return $map;
}
}
/**
* Generate a sitemap index file pointing to other sitemaps you previously built
*
* @param array $urls array of urls, each being an array with at least a loc index
* @param string $file_name (optional) if file name is supplied the XML data is saved in it otherwise returned as a string
* @param bool $gzip (optional) compress sitemap, overwrites config item 'sitemaps_gzip'
* @access public
* @return string
*/
function build_index($urls, $file_name = null, $gzip = null)
{
$CI =& get_instance();
$index = $CI->config->item('sitemaps_index_header') . "\n";
foreach($urls as $url)
{
$url['loc'] = htmlentities($url['loc'], ENT_QUOTES);
$index .= "\t
if(isset($url['lastmod']))
{
$index .= "\t\t
}
$index .= "\t\n\n";
}
$index .= $CI->config->item('sitemaps_index_footer');
if( ! is_null($file_name))
{
$fh = fopen($file_name, 'w');
fwrite($fh, $index);
fclose($fh);
if($CI->config->item('sitemaps_filesize_error') && filesize($file_name) > 1024 * 1024 * 10)
{
show_error('Your sitemap index is bigger than 10MB, most search engines will not accept it.');
}
if($gzip OR (is_null($gzip) && $CI->config->item('sitemaps_index_gzip')))
{
$gzdata = gzencode($index, 9);
$file_gzip = str_replace("{file_name}", $file_name, $CI->config->item('sitemaps_index_gzip_path'));
$fp = fopen($file_gzip, "w");
fwrite($fp, $gzdata);
fclose($fp);
// Delete the uncompressed sitemap index
unlink($file_name);
return $file_gzip;
}
return $file_name;
}
else
{
return $index;
}
}
/**
* Notify search engines of your updates sitemap
*
* @param string $url_xml absolute URL of your sitemap, use Codeigniter's site_url()
* @param array $search_engines array of search engines to ping, see config file for notes
* @access public
* @return array HTTP reponse codes
*/
function ping($url_xml, $search_engines = NULL)
{
$CI =& get_instance();
if(is_null($search_engines))
{
$search_engines = $CI->config->item('sitemaps_search_engines');
}
$statuses = array();
foreach($search_engines AS $engine)
{
$status = 0;
if($fp = @fsockopen($engine['host'], 80))
{
$engine['url'] = emptyempty($engine['url']) ? "/ping?sitemap=" : $engine['url'];
$req = 'GET ' . $engine['url'] .
urlencode($url_xml) . " HTTP/1.1\r\n" .
"Host: " . $engine['host'] . "\r\n" .
$CI->config->item('sitemaps_user_agent') .
"Connection: Close\r\n\r\n";
fwrite($fp, $req);
while( ! feof($fp))
{
if(@preg_match('~^HTTP/\d\.\d (\d+)~i', fgets($fp, 128), $m))
{
$status = intval($m[1]);
break;
}
}
fclose($fp);
}
$statuses[] = array("host" => $engine['host'], "status" => $status, "request" => $req);
}
if($CI->config->item('sitemaps_log_http_responses') OR $CI->config->item('sitemaps_debug'))
{
foreach($statuses AS $reponse)
{
$message = "Sitemaps: " . $reponse['host'] . " responded with HTTP status " . $reponse['status'];
if($CI->config->item('sitemaps_log_http_responses'))
{
$level = $reponse['status'] == 200 ? 'debug' : 'error';
log_message($level, $message);
}
if($CI->config->item('sitemaps_debug'))
{
echo "
" . $message . " after request:
\n" . $reponse['request'] . "
}
}
}
return $statuses;
}
}
/**
* A class for generating XML sitemaps
*
* @author Philipp Dörner
* @version 0.7
* @access public
* @package sitemaps
*/
class Sitemaps
{
var $items = array();
function Sitemaps()
{
$CI =& get_instance();
$CI->config->load('sitemaps');
}
/**
* Adds a new item to the urlset
*
* @param array $new_item
* @access public
*/
function add_item($new_item)
{
$this->items[] = $new_item;
}
/**
* Adds an array of items to the urlset
*
* @param array $new_items array of items
* @access public
*/
function add_item_array($new_items)
{
$this->items = array_merge($this->items, $new_items);
}
/**
* Generates the sitemap XML data
*
* @param string $file_name (optional) if file name is supplied the XML data is saved in it otherwise returned as a string
* @param bool $gzip (optional) compress sitemap, overwrites config item 'sitemaps_gzip'
* @access public
* @return string
*/
function build($file_name = null, $gzip = NULL)
{
$CI =& get_instance();
$map = $CI->config->item('sitemaps_header') . "\n";
foreach($this->items as $item)
{
$item['loc'] = htmlentities($item['loc'], ENT_QUOTES);
$map .= "\t
$attributes = array("lastmod", "changefreq", "priority");
foreach($attributes AS $attr)
{
if(isset($item[$attr]))
{
$map .= "\t\t" . $item[$attr] . "$attr>\n";
}
}
$map .= "\t\n\n";
}
unset($this->items);
$map .= $CI->config->item('sitemaps_footer');
if( ! is_null($file_name))
{
$fh = fopen($file_name, 'a');//w
fwrite($fh, $map);
fclose($fh);
if($CI->config->item('sitemaps_filesize_error') && filesize($file_name) > 1024 * 1024 * 30)
{
show_error('Your sitemap is bigger than 10MB, most search engines will not accept it.');
}
if($gzip OR (is_null($gzip) && $CI->config->item('sitemaps_gzip')))
{
$gzdata = gzencode($map, 9);
$file_gzip = str_replace("{file_name}", $file_name, $CI->config->item('sitemaps_gzip_path'));
$fp = fopen($file_gzip, "a");//w
fwrite($fp, $gzdata);
fclose($fp);
// Delete the uncompressed sitemap
unlink($file_name);
return $file_gzip;
}
return $file_name;
}
else
{
return $map;
}
}
/**
* Generate a sitemap index file pointing to other sitemaps you previously built
*
* @param array $urls array of urls, each being an array with at least a loc index
* @param string $file_name (optional) if file name is supplied the XML data is saved in it otherwise returned as a string
* @param bool $gzip (optional) compress sitemap, overwrites config item 'sitemaps_gzip'
* @access public
* @return string
*/
function build_index($urls, $file_name = null, $gzip = null)
{
$CI =& get_instance();
$index = $CI->config->item('sitemaps_index_header') . "\n";
foreach($urls as $url)
{
$url['loc'] = htmlentities($url['loc'], ENT_QUOTES);
$index .= "\t
if(isset($url['lastmod']))
{
$index .= "\t\t
}
$index .= "\t\n\n";
}
$index .= $CI->config->item('sitemaps_index_footer');
if( ! is_null($file_name))
{
$fh = fopen($file_name, 'w');
fwrite($fh, $index);
fclose($fh);
if($CI->config->item('sitemaps_filesize_error') && filesize($file_name) > 1024 * 1024 * 10)
{
show_error('Your sitemap index is bigger than 10MB, most search engines will not accept it.');
}
if($gzip OR (is_null($gzip) && $CI->config->item('sitemaps_index_gzip')))
{
$gzdata = gzencode($index, 9);
$file_gzip = str_replace("{file_name}", $file_name, $CI->config->item('sitemaps_index_gzip_path'));
$fp = fopen($file_gzip, "w");
fwrite($fp, $gzdata);
fclose($fp);
// Delete the uncompressed sitemap index
unlink($file_name);
return $file_gzip;
}
return $file_name;
}
else
{
return $index;
}
}
/**
* Notify search engines of your updates sitemap
*
* @param string $url_xml absolute URL of your sitemap, use Codeigniter's site_url()
* @param array $search_engines array of search engines to ping, see config file for notes
* @access public
* @return array HTTP reponse codes
*/
function ping($url_xml, $search_engines = NULL)
{
$CI =& get_instance();
if(is_null($search_engines))
{
$search_engines = $CI->config->item('sitemaps_search_engines');
}
$statuses = array();
foreach($search_engines AS $engine)
{
$status = 0;
if($fp = @fsockopen($engine['host'], 80))
{
$engine['url'] = empty($engine['url']) ? "/ping?sitemap=" : $engine['url'];
$req = 'GET ' . $engine['url'] .
urlencode($url_xml) . " HTTP/1.1\r\n" .
"Host: " . $engine['host'] . "\r\n" .
$CI->config->item('sitemaps_user_agent') .
"Connection: Close\r\n\r\n";
fwrite($fp, $req);
while( ! feof($fp))
{
if(@preg_match('~^HTTP/\d\.\d (\d+)~i', fgets($fp, 128), $m))
{
$status = intval($m[1]);
break;
}
}
fclose($fp);
}
$statuses[] = array("host" => $engine['host'], "status" => $status, "request" => $req);
}
if($CI->config->item('sitemaps_log_http_responses') OR $CI->config->item('sitemaps_debug'))
{
foreach($statuses AS $reponse)
{
$message = "Sitemaps: " . $reponse['host'] . " responded with HTTP status " . $reponse['status'];
if($CI->config->item('sitemaps_log_http_responses'))
{
$level = $reponse['status'] == 200 ? 'debug' : 'error';
log_message($level, $message);
}
if($CI->config->item('sitemaps_debug'))
{
echo "
" . $message . " after request:
\n" . $reponse['request'] . "
}
}
}
return $statuses;
}
}
2、sitemap.php控制类,注意这里不要与libraries中的sitemaps.php同名,不然会报错的.
if(!defined('BASEPATH')) exit('No direct script access allowed');
/**
 

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











iPhone의 기본 지도는 Apple의 독점 위치 정보 제공업체인 지도입니다. 지도가 점점 좋아지고 있지만 미국 이외의 지역에서는 잘 작동하지 않습니다. Google 지도와 비교하면 아무것도 제공할 수 없습니다. 이 기사에서는 Google 지도를 사용하여 iPhone의 기본 지도로 만드는 실행 가능한 단계에 대해 설명합니다. iPhone에서 Google 지도를 기본 지도로 설정하는 방법 Google 지도를 휴대전화의 기본 지도 앱으로 설정하는 것은 생각보다 쉽습니다. 아래 단계를 따르십시오. – 전제 조건 단계 – 휴대폰에 Gmail이 설치되어 있어야 합니다. 1단계 – AppStore를 엽니다. 2단계 – “Gmail”을 검색하세요. 3단계 - Gmail 앱 옆을 클릭하세요.

vivox100s와 x100 휴대폰은 모두 in vivo 휴대폰 제품군의 대표적인 모델입니다. 두 휴대폰은 각각 서로 다른 시대의 vivo 첨단 기술 수준을 대표하므로 디자인, 성능, 기능 면에서 일정한 차이가 있습니다. 이번 글에서는 소비자들이 자신에게 꼭 맞는 휴대폰을 선택할 수 있도록 두 휴대폰을 성능비교와 기능분석 측면에서 자세히 비교해보겠습니다. 먼저 vivox100s와 x100의 성능 비교를 살펴보겠습니다. vivox100s에는 최신 기술이 탑재되어 있습니다.

Linux Bashrc 이해: 기능, 구성 및 사용법 Linux 시스템에서 Bashrc(BourneAgainShellruncommands)는 시스템 시작 시 자동으로 실행되는 다양한 명령과 설정이 포함된 매우 중요한 구성 파일입니다. Bashrc 파일은 일반적으로 사용자의 홈 디렉토리에 있으며 숨겨진 파일입니다. 해당 기능은 사용자를 위해 Bashshell 환경을 사용자 정의하는 것입니다. 1. Bashrc 기능 설정 환경

인터넷의 급속한 발전으로 셀프미디어라는 개념은 사람들의 마음속에 깊이 뿌리내렸습니다. 그렇다면 셀프미디어란 정확히 무엇인가? 주요 특징과 기능은 무엇입니까? 다음에는 이러한 문제를 하나씩 살펴보겠습니다. 1. 셀프미디어란 정확히 무엇인가? We-media는 이름에서 알 수 있듯이 당신이 미디어라는 뜻입니다. 개인이나 팀이 인터넷 플랫폼을 통해 콘텐츠를 독립적으로 생성, 편집, 출판 및 전파할 수 있는 정보 매체를 말합니다. 신문, 텔레비전, 라디오 등과 같은 전통적인 미디어와 달리 셀프 미디어는 더욱 상호작용적이고 개인화되어 있어 모든 사람이 정보의 생산자이자 전파자가 될 수 있습니다. 2. 셀프미디어의 주요 특징과 기능은 무엇입니까? 1. 낮은 문턱: 셀프미디어의 등장으로 미디어 산업에 진출하기 위한 문턱이 낮아졌습니다. 더 이상 번거로운 장비와 전문팀이 필요하지 않습니다.

Xiaohongshu가 젊은이들 사이에서 인기를 끌면서 점점 더 많은 사람들이 이 플랫폼을 사용하여 자신의 경험과 인생 통찰력의 다양한 측면을 공유하기 시작했습니다. 여러 Xiaohongshu 계정을 효과적으로 관리하는 방법이 중요한 문제가 되었습니다. 이 글에서는 Xiaohongshu 계정 관리 소프트웨어의 일부 기능에 대해 논의하고 Xiaohongshu 계정을 더 잘 관리하는 방법을 살펴보겠습니다. 소셜 미디어가 성장함에 따라 많은 사람들이 여러 소셜 계정을 관리해야 한다는 사실을 깨닫게 되었습니다. 이는 Xiaohongshu 사용자에게도 어려운 과제입니다. 일부 Xiaohongshu 계정 관리 소프트웨어는 자동 콘텐츠 게시, 예약 게시, 데이터 분석 및 기타 기능을 포함하여 사용자가 여러 계정을 보다 쉽게 관리할 수 있도록 도와줍니다. 이러한 도구를 통해 사용자는 자신의 계정을 보다 효율적으로 관리하고 계정 노출과 관심을 높일 수 있습니다. 또한 Xiaohongshu 계정 관리 소프트웨어에는

샤오홍슈가 젊은이들 사이에서 점점 더 인기를 끌면서 샤오홍슈에 매장을 오픈하는 사람들도 점점 더 많아지고 있습니다. 많은 초보 판매자들이 매장 주소를 설정할 때 어려움을 겪고 있으며 매장 주소를 지도에 추가하는 방법을 모릅니다. 1. 샤오홍슈 지도에 매장 주소를 추가하는 방법은 무엇인가요? 1. 먼저 귀하의 매장이 Xiaohongshu에 등록된 계정이 있고 성공적으로 매장을 오픈했는지 확인하세요. 2. Xiaohongshu 계정에 로그인하고 스토어 백엔드에 들어가서 "스토어 설정" 옵션을 찾으세요. 3. 스토어 설정 페이지에서 "스토어 주소" 열을 찾아 "주소 추가"를 클릭하세요. 4. 팝업되는 주소 추가 페이지에서 시, 군, 군, 거리, 집번호 등 매장의 상세 주소 정보를 입력합니다. 5. 입력 후 '추가 확인' 버튼을 클릭하세요. Xiaohongshu가 주소를 알려드릴 것입니다.

제목: Linux 시스템에서 FTPS를 구성하고 설치하는 방법에는 특정 코드 예제가 필요합니다. Linux 시스템에서 FTPS는 FTP와 비교하여 전송된 데이터를 TLS/SSL 프로토콜을 통해 암호화하므로 성능이 향상됩니다. 데이터 전송의 보안. 이 기사에서는 Linux 시스템에서 FTPS를 구성 및 설치하는 방법을 소개하고 구체적인 코드 예제를 제공합니다. 1단계: vsftpd 설치 터미널을 열고 다음 명령을 입력하여 vsftpd를 설치합니다. sudo

출시 1년 만에 Google 지도에 새로운 기능이 출시되었습니다. 지도에 목적지까지의 경로를 설정하면 여행 경로가 요약되어 표시됩니다. 여행이 시작되면 휴대전화의 잠금 화면에서 경로 안내를 '찾아보기'할 수 있습니다. Google 지도를 사용하여 예상 도착 시간과 경로를 확인할 수 있습니다. 여행 내내 잠금 화면에서 내비게이션 정보를 볼 수 있으며, 휴대폰 잠금을 해제하면 Google 지도에 액세스하지 않고도 내비게이션 정보를 볼 수 있습니다. 휴대전화를 잠금 해제하면 Google 지도에 액세스하지 않고도 내비게이션 정보를 볼 수 있습니다. 휴대전화를 잠금 해제하면 Google 지도에 액세스하지 않고도 내비게이션 정보를 볼 수 있습니다. 휴대전화를 잠금 해제하면 Google 지도에 액세스하지 않고도 내비게이션 정보를 볼 수 있습니다. Google 지도에 접속하지 않고도 내비게이션 정보를 볼 수 있습니다.
