1
rosu 2016-12-09 11:56:57 +08:00 via Android 1
301 重定向?或者重写页面?
|
2
Kylinsun OP |
3
mornlight 2016-12-09 12:03:15 +08:00 1
服务端 301 重定向
|
4
wevsty 2016-12-09 12:03:57 +08:00 1
直接设置 301 或者 302 就行了
|
5
jarlyyn 2016-12-09 12:04:34 +08:00 1
301 重定向……
|
6
nigelvon 2016-12-09 12:06:36 +08:00 1
Header 里面加个 Strict-Transport-Security
|
8
jarlyyn 2016-12-09 12:35:40 +08:00
server {
server_name www.herbcreation.com; listen 80; rewrite ^/(.*)$ https://www.herbcreation.com/$1 permanent; } 我的 nginx 配置 |
10
ys0290 2016-12-09 12:47:29 +08:00 via iPhone 1
善用 www.example.com ,慎用 www.xxx.com
|
13
lissome 2016-12-09 12:57:50 +08:00 1
if ($ssl_protocol = "") { return 301 https://$host$request_uri; }
|
14
yytsjq 2016-12-09 13:08:06 +08:00 1
Nginx
server { listen 80; server_name www.example.com; return 301 https://www.example.com$request_uri; } |
15
Kylinsun OP 终于搞定,域名我就不发出了,小站。。。
环境 lamp 未解决:我在项目文件能创建.htaccess 配置好规则,然而并未生效,现在还没找出是什么原因. 解决:我是通过修改 vhosts 的配置文件实现 301 重定向. ![image]("https://ooo.0o0.ooo/2016/12/09/584a4401750a5.png") |
16
Kylinsun OP 更新一下图片![image]( https://ooo.0o0.ooo/2016/12/09/584a4401750a5.png)
|
17
mephisto 2016-12-09 16:49:29 +08:00
return 301 https://$server_name$request_uri;
|
18
mephisto 2016-12-09 16:50:03 +08:00
add_header Strict-Transport-Security "max-age=31536000";
|
19
lhbc 2016-12-09 16:53:01 +08:00
你们啊,动不动就让楼主加 HSTS ,这是想坑死楼主吗?
哈哈哈 |
20
galenzhao 2016-12-09 17:47:30 +08:00
hsts 有啥不好么?
|