A cheaper option

Some people may not want to buy a domain or pay for hosting because they only have a personal web site for fun or practice.

You can still get your website live on the web by using a free hosting service that allows you to create what is called a ‘sub-domain’.

A sub-domain is just a domain that is part of another domain.

So if killersites.com offered sub-domain hosting you could have an address like:

www.killersites.com/yourWebsite/

Or it could be like:

http://yourWebsite.killersites.com

Whichever way the free hosting service decides to do it.

The point is that your web site domain is really a part of the parent domain, in this case killersites.com.

Doing it this way, you don’t need to buy a domain name, and you don’t need to pay for hosting.

This is fine for fun or project websites, but if you are serious about your web site (say it’s your business website) using sub-domains

is like taking someone else’s business card and writing your name on it!

You figure it out …

One last point, I’ve heard of free hosting services that will allow you to host proper domains with them for free and without annoying ads that other free hosts will insert into your pages.

But I’ve never used them, and in my opinion you always get what you pay for.

In the internet’s recent past there was once a crop of一批 free service providers that

would give away泄露,赠送 access to the web via dial-up, they were notorious臭名昭著的 for bad service and all have since gone bankrupt破产 …

I wonder why?

Moving your website files onto the server

After you have your domain name registered and your hosting service in place, the last step is to upload the website onto the server.

You can transfer your web site to your host’s server using an FTP program.

An FTP program is a type of software that is used to move files from one computer to another over the Internet.

FTP is the acronym首字母缩写词 for: File Transfer Protocol; this just means that this is a ‘way’ of moving files.

There are several free FTP programs you can use to move your files

and many HTML editors and web design programs like Dreamweaver have FTP capabilities built in.

One option you probably have to ‘FTP’ your files to the server is Internet Explorer.

Internet Explorer 5 and up have an FTP program built right in.

You can use it by typing in the FTP address of the server in the address bar preceded by the keyword: FTP.

Here is an example:

FTP://207.35.15.69/yourwebsite/

Lesson 1 Basic Concepts: Part 3的更多相关文章

  1. Lesson 1 Basic Concepts: Part 1

    www.how-to-build-websites.com/basic-concepts/part1.php An introduction to domain names, web servers, ...

  2. Lesson 1 Basic Concepts: Part 2

    Getting your web site ‘live’ on the Web With the nerd background details under our belts, we can now ...

  3. Basic Concepts of Block Media Recovery

    Basic Concepts of Block Media Recovery Whenever block corruption has been automatically detected, yo ...

  4. (二)Basic Concepts 基本概念

    Basic Concepts There are a few concepts that are core to Elasticsearch. Understanding these concepts ...

  5. CMUSphinx Learn - Basic concepts of speech

    Basic concepts of speech Speech is a complex phenomenon. People rarely understand how is it produced ...

  6. Nginx Tutorial #1: Basic Concepts(转)

    add by zhj: 文章写的很好,适合初学者 原文:https://www.netguru.com/codestories/nginx-tutorial-basics-concepts Intro ...

  7. [Network]Introduction and Basic concepts

    [该系列是检讨计算机网络知识.因为现在你想申请出国.因此,在写这篇博客系列的大多数英语.虽然英语,但大多数就是我自己的感受和理解,供大家学习和讨论起来] 1 Network Edge The devi ...

  8. Eric Linux - 1 Basic concepts of linux

    Computer basic Computer 5 parts CPU Input Output Memory External storage device. CPU RISC: Reduced I ...

  9. Basic concepts of docker/kubernete/kata-container

    Kubereters An open-source system for automating deployment, scaling, and management of containerized ...

随机推荐

  1. PHP中使用DOM读取解析XML属性值一例

    先看XML文件结构,与常见的文件略有不同,数据并不是用闭合标签保存的,而是直接保存在属性值中. <?xml version="1.0" encoding="utf- ...

  2. ajax 不执行

    1.get形式访问: 一个相同的URL 只有一个结果,所以 第二次访问的时候 如果 URL字符串没变化 浏览器是 直接拿出了第一次访问的结果,post则不会 解决办法: 1.url+new Date( ...

  3. 管理windows自启动程序

    1. 点击开始,在运行程序框中输入msconfig,然后回车. 在弹出的对话框中,点击”启动“选项卡,在启动项目列表中,把不需要的启动项目前面的对号去掉. 然后切换到”服务“选项卡,这里的服务项目列表 ...

  4. vue.js的<slot>

    使用插槽分发内容在封装vue组件的时候,很多时候就不得不使用到vue的一个内置组件<slot>.slot是插槽的意思,顾名思义,这个<slot>组件的意义是预留一个区域,让其中 ...

  5. 【codeforces 379D】New Year Letter

    [题目链接]:http://codeforces.com/contest/379/problem/D [题意] 让你构造出两个长度分别为n和m的字符串s[1]和s[2] 然后按照连接的规则,顺序连接s ...

  6. (原创)VS2017 C# 运行 Javasrcipt RSA 加密用户名登录 Java开发的服务器

    第一次写博客. 最近想做一个Web的自动登录,用户名和密码是RSA加密过的,后台是用的JAVA,我只会点C#,抓包什么都搞定了(使用的是Fiddler),不过由于C#和RSA的加密方式不同,我搞了N天 ...

  7. 将Spring Boot应用程序迁移到Java9:兼容性

    将 Spring Boot 应用程序迁移到 Java 9:兼容性 随着 Java 9 的到来,关于如何迁移应用程序以使用模块系统有很多的讨论.遗憾的是,大多数文章的焦点都集中于简单的 Hello Wo ...

  8. ASP.NET-ajax.acionlink使用

    Ajax 属性的ActionLink方法可以创建一个具有异步行为的锚标签. ActionLink方法的第一个参数指定了链接文本,第二个参数是要异步调用的操作的名称.类似于同名的HTML辅助方法,AJA ...

  9. POJ——T1860 Currency Exchange

    http://poj.org/problem?id=1860 Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 29874   ...

  10. Java - 多线程Callable、Executors、Future

    http://blog.csdn.net/pipisorry/article/details/44341579 Introduction Callable接口代表一段能够调用并返回结果的代码; Fut ...