blob: 234f6f53dd039dabeab03d0b4d80926443476d2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
title: FTP
slug: Glossary/FTP
translation_of: Glossary/FTP
---
<p><strong>FTP</strong>(File Transfer Protocol,文件传输协议)曾在过去许多年里是在 Internet 上主机({{glossary("host")}})之间传输文件的标准协议({{glossary("protocol")}})。现在越来越多的组织和主机账户不允许使用 FTP,而是使用诸如 Git 那样的版本控制系统。您仍可以在一些旧的主机系统上看到它,但可以肯定地说,使用 FTP 不再被认为是最好的做法。</p>
<p><strong>FTP </strong>是 TCP/IP 协议组中的协议之一。FTP协议包括两个组成部分,其一为<a href="https://baike.sogou.com/lemma/ShowInnerLink.htm?lemmaId=449752&ss_c=ssc.citiao.link">FTP服务器</a>,其二为FTP客户端。其中FTP服务器用来存储文件,用户可以使用FTP客户端通过FTP协议访问位于FTP服务器上的资源。在开发网站的时候,通常利用FTP协议把网页或程序传到<a href="https://baike.sogou.com/lemma/ShowInnerLink.htm?lemmaId=267249&ss_c=ssc.citiao.link">Web服务器</a>上。此外,由于FTP传输效率非常高,在网络上传输大的文件时,一般也采用该协议。</p>
<h2 id="了解更多">了解更多</h2>
<h3 id="总体了解">总体了解</h3>
<ul>
<li><a href="/en-US/Learn/Upload_files_to_a_web_server">Beginner's guide to uploading files via FTP</a></li>
<li>维基百科上的 {{interwiki("wikipedia", "File Transfer Protocol", "FTP")}}
</li>
</ul>
|