https://www.v2ex.com/new    创作新主题
https://www.v2ex.com/new/   404
https://golang.org/doc 会跳转到 https://golang.org/doc/
下面两个是一样的
https://github.com/wencan/docker-library 
https://github.com/wencan/docker-library/
今天还发现, nginx location 执行精确匹配时,/root 和 /root/是不同的
|  |      1blacktulip      2015-10-22 16:31:18 +08:00 google 搜   trailing slash in url | 
|      2Shieffan      2015-10-22 16:32:28 +08:00  1 相不相同要看你服务端怎么处理,你可以定义 /root 跟 /root/为不同的业务逻辑,你也可以让 /root  301 到 /root/,你也可以 rewrite 掉结尾的 / | 
|  |      3wildfates      2015-10-22 16:33:17 +08:00 /root.txt /root/.txt 这种是不是就明白了? 带 /是文件夹,不带是文件 | 
|  |      4imkodo      2015-10-22 16:46:19 +08:00  1 域名后面从"/"开始的字符串服务器是怎么处理的你永远都不知道 | 
|  |      6cevincheung      2015-10-22 17:08:03 +08:00 URL 表示一个资源。 /root 和 /root/ 代表是两个资源。 | 
|      7xfspace      2015-10-22 17:10:57 +08:00 url rewrite |