如何购买及绑定域名
收藏课程
取消收藏
4mins / By SHOPLAZZA Learn
收藏课程
取消收藏

域名,是由一串用点分隔的名字组成的Internet上某一台计算机或计算机组的名称,用于在数据传输时标识计算机的电子方位(有时也指地理位置),目前域名已经成为互联网的品牌、网上商标保护必备的产品之一。

如果拥有一个好记而且符合品牌的域名,对独立站的推广会起到了事半功倍的作用,好的域名能够让客户一眼就记住你的品牌,下次仍能够很容易地找到。本课程讲让你快速学习如何在shoplazza后台购买并且绑定你的域名,助力你快速建立自己的商业品牌。

  • 0:00:14 选择并且购买一个域名,是独立站生意的开始。它就如同品牌的昵称一样重要。今天我们将与大家分享,如何才能购买一个域名并开始使用它。
  • 0:00:25 购买域名 第一步您需要找到一个域名的购买平台,比如全球知名的Godaddy。您只需要进入这个网站,搜索您喜欢的关键词,就能找到各种不同的域名选项。点击将它加入购物车,并进行付款即可。
  • 0:00:44 值得一提的是,如果您没有一张可以支付美元的信用卡,希望用人民币来付款购买,您只需要进入Godaddy的新加坡站点重复上述的流程即可。不过我真心地建议您,尽量拥有一张可以支付美元的信用卡,这对您后期的各种业务都至关重要。
  • 0:01:05 除了Godaddy之外,Name.com、Namecheap.com、甚至国内的阿里云等平台均可以实现同样的效果,您可以上不同的平台进行价格对比选择一个您更信赖或价格更便宜的平台来购买。
  • 0:01:13 在选购域名的时候,有几个技巧这里分享给您 ①域名越短越好 ②选择容易拼读容易发音的词或词组 ③避免侵权 ④用英文而非汉语拼音 ⑤尽量不要使用符号和数字 ⑥后缀一般情况下首选com或net、co 祝您找到那个您最喜欢的域名。
  • 0:01:50 域名绑定 将您购买的域名绑定在Shoplazza的后台,使您的网站未来都以该域名出现,是我们要完成的第二步。这个流程可能会显得比较复杂,但总结起来其实是一个动作,就是:前往域名购买的平台,植入一行代码,以向Shoplazza证明,这个域名确实归您所有。
  • 0:02:14 首先我们需要在店匠后台的绑定域名选项中,输入我们拥有的域名,点击下一步,这时会出现两条信息,您可以把它看做为您生成的一段密码,我们点击复制。这样我们就有了一个店匠为您准备的专属密码了。让我们回到刚刚举例的Godaddy平台,将这个密码填入域名管理的后台,就可以证明您是域名的所有人了。我们点击右上角的“我的产品”,然后点击这个“DNS”按钮,进入新页面后我们点击添加,还记得刚才的那些信息么,把他们呢一一填入即可,然后点击保存。接下来,我们只需要回到Shoplazza后台,点击验证,出现绑定成功字样后,就大功告成
课程评论

看看学员怎么说

发表评论
顾客评论
已到底部
最新评价时间
按点赞数从大到小
按评分从高到低
按评分从低到高
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.