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. oracle和mysql的分页

    如果我们是通过JDBC的方式访问数据库,那么就有必要根据数据库类型采取不同的SQL分页语句,对于MySql数据库,我们可以采用limit语句进行分页,对于Oracle数据库,我们可以采用rownum的 ...

  2. 用shell写一个简单DHCP配置脚本

    轩轩写的这个小脚本,主要是可以进行对dhcp服务的安装.简单配置.开启.关闭/查看状态等情况 使用呢非常简单,按照步骤进行准确的设置就可以啦 #!/bin/bashyum -y install dhc ...

  3. MAVEN flex

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/20 ...

  4. mysql同步复制报Slave can not handle replication events with the checksum that master 错误

    slave服务器,查看状态时,发现下面的错误: Last_IO_Error: Got fatal error 1236 from master when reading data from binar ...

  5. Qt之QPushButton

    简述 前面章节我们分享过Qt之QAbstractButton,讲解了QAbstractButton的基本用法,本节着重讲解QPushButton. 简述 常用状态 效果 源码 QSS 更多参考 关于Q ...

  6. spark一些入门资料

    spark一些入门资料 A Scala Tutorial for Java Programmers http://docs.scala-lang.org/tutorials/scala-for-jav ...

  7. HDU 2196 Computer(求树上每一个节点到其他点的最远距离)

    解题思路: 求出树的直径的两个端点.则树上每一个节点到其它点的最远距离一定是到这两个端点的距离中最长的那一个. #include <iostream> #include <cstri ...

  8. 数学之路-python计算实战(6)-numpy-ndarray

    >>>> mya=np.zeros(shape=(2,2)) >>>> mya array([[ 0.,  0.], [ 0.,  0.]]) > ...

  9. vim 插件之vim-trailing-whitespace

    vim-trailing-whitespace 这个插件是快速去掉文章行末的空格 地址 http://github.com/bronson/vim-trailing-whitespace 如果你想要使 ...

  10. Java类和对象4

    编写Java应用程序.首先,定义一个Print类,它有一个方法void output(intx),如果x的值是1,在控制台打印出大写的英文字母表:如果x的值是2,在控制台打印出小写的英文字母表.其次, ...