V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  jsjcjsjc  ›  全部回复第 21 页 / 共 21 页
回复总数  408
1 ... 12  13  14  15  16  17  18  19  20  21  
2016-07-21 15:01:14 +08:00
回复了 jsjcjsjc 创建的主题 Google 如何通过 google 跳转到指定网址?
@yeshang 本人行为端正,只有 google 的广告
2016-06-26 18:28:53 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@mhtt 您好,可以看一下我 16 楼的回复,据说 HTTPS 可以隐藏 referer
2016-06-25 20:52:29 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@lslqtz2 我看了 wiki ,上面说 https 的跳转也不会有 referer
“ If a website is accessed from a HTTP Secure (HTTPS) connection and a link points to anywhere except another secure location, then the referrer field is not sent.[10]”
https://en.wikipedia.org/wiki/HTTP_referer#Referrer_hiding
2016-06-25 17:34:24 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@TaMud 这个可以去 referer ?
2016-06-25 17:23:57 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@lslqtz 你的意思是只有 return 301 或者 js 的跳转才不会留下 refer 吗?可以根据 2 楼我的回复给我一个例子吗。。没明白啊~~~非常感谢 ;-)
2016-06-25 17:21:54 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@HLT 我有个域名有很多自然流量,但是已经被 google 列入黑名单了,所以需要跳转但又不能让 google 知道 refer~~
2016-06-25 17:20:34 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@raphaelsoul 你这个是和我 2 楼写的是一个意思吗?没看出来不一样啊 ;-)
2016-06-25 09:13:29 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@ryd994 server
这样写可以吗?
{
listen 80;
server_name g.getpocket.net;
location / {
rewrite ^/(.*)$ https://g.getpocket.net$1 permanent;
}
}

server {
server_name g.getpocket.net;
listen 443;

ssl on;
ssl_certificate /etc/letsencrypt/live/g.getpocket.net/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/g.getpocket.net/privkey.pem;

location / {
rewrite ^/(.*)$ http://baidu.com$1 permanent;
}
}
1 ... 12  13  14  15  16  17  18  19  20  21  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2172 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 15ms · UTC 09:44 · PVG 17:44 · LAX 02:44 · JFK 05:44
Developed with CodeLauncher
♥ Do have faith in what you're doing.