案例2:内部跳转
更改/etc/nginx/conf.d/rewrite.conf内容
在/pm_code中创建文件2.html(内容222),在浏览器中输入www.pm.com/1.html
在错误日志中查看记录
使用return
在上述 *** 中,浏览器地址栏中显示的是1.html,而网页内容是2.html的内容,如果想要地址栏中也显示2.html,将location中的内容更改为 return 302 /2.html; 或者 rewrite .* /2.html redirect;
使用正则
例:将www.pm.com/2020/* 重定向到 www.pm.com/2019/*
括号代表一个整体,$1代表前面之一个括号内的内容
将http跳转到https
注:nginx 1.14版本后可以不用写ssl on了,listen那里写成listen 443 ssl;
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。