Files
the-way-to-go_ZH_CN/eBook/19.2.md
marjune 1dfd41bd93 add chapter 19.x (#700)
* add chapter 19.x

* add chapter 19.4
2019-08-01 21:16:46 -07:00

23 lines
869 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 19.2 短网址项目简介
你肯定知道有些浏览器中的地址(称为 URL非常长且/或复杂,在网上有一些将他们转换成简短 URL 来使用的服务。我们的项目与此类似:它是具有 2 个功能的 *web 服务*web service
## 添加 (Add)
给定一个较长的 URL会将其转换成较短的版本例如
```
http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=tokyo&sll=37.0625,-95.677068&sspn=68.684234,65.566406&ie=UTF8&hq=&hnear=Tokyo,+Japan&t=h&z=9
```
- (A) 转变为:`http://goto/UrcGq`
- (B) 并保存这对数据
## 重定向 (Redirect)
短网址被请求时,会把用户重定向到原始的长 URL。因此如果你在浏览器输入网址 (B),会被重定向到页面 (A)。
## 链接
- [目录](directory.md)
- 上一节:[简介](19.1.md)
- 下一节:[数据结构](19.3.md)