Loading
0

Nginx伪静态(重定向)nginx跳转实例大全

技术小学生微信公众号
腾讯云服务器大促销。
华为服务器
如下是一些常见的nginx下伪静态跳转规则实例,非常实用,请收藏啊

1,将www.tag.gg/connect 跳转到connect.tag.gg


rewrite ^/connect$ http://connect.tag.gg permanent;
rewrite ^/connect/(.*)$ http://connect.tag.gg/$1 permanent;

2,将connect.tag.gg 301跳转到www.tag.gg/connect/


if ($host = "connect.tag.gg"){
rewrite ^/(.*)$ http://www.tag.gg/connect/$1 permanent;
}

3,tag.gg 跳转到www.tag.gg


if ($host != 'www.tag.gg' ) {
rewrite ^/(.*)$ http://www.tag.gg/$1 permanent;
    }

https顶及调整https加www

if ($host = 'tag.gg' ) {
    rewrite ^/(.*)$ https://www.tag.gg/$1 permanent;
}



4,www.tag.gg/category/123.html 跳转为 category/?cd=123

rewrite "/category/(.*).html$" /category/?cd=$1 last;

5,www.tag.gg/admin/ 下跳转为www.tag.gg/admin/index.php?s=


if (!-e $request_filename){
rewrite ^/admin/(.*)$ /admin/index.php?s=/$1 last;
    }

6,在后面添加/index.php?s=


if (!-e $request_filename){
    rewrite ^/(.*)$ /index.php?s=/$1 last;
    }

7,www.tag.gg/xinwen/123.html  等xinwen下面数字+html的链接跳转为404

rewrite ^/xinwen/([0-9]+)\.html$ /404.html last;

8,http://www.tag.gg/news/radaier.html 301跳转 http://www.tag.gg/strategy/

rewrite ^/news/radaier.html http://www.tag.gg/strategy/ permanent;

9,重定向 链接为404页面

rewrite http://www.tag.gg/123/456.php /404.html last;

10, 禁止htaccess


location ~//.ht {
         deny all;
     }

11, 可以禁止/data/下多级目录下.log.txt等请求;


location ~ ^/data {
     deny all;
     }

12, 禁止单个文件


location ~ /www/log/123.log {
      deny all;
     }

13, http://www.tag.gg/news/activies/2014-08-26/123.html 跳转为 http://www.tag.gg/news/activies/123.html

rewrite ^/news/activies/2014\-([0-9]+)\-([0-9]+)/(.*)$ http://www.tag.gg/news/activies/$3 permanent;

14,nginx多条件重定向rewrite
如果需要打开带有play的链接就跳转到play,不过/admin/play这个不能跳转

       
if ($request_filename ~ (.*)/play){ set $payvar '1';}
if ($request_filename ~ (.*)/admin){ set $payvar '0';}
if ($payvar ~ '1'){
 rewrite ^/ http://play.tag.gg/ break;
 }

15,http://www.tag.gg/?gid=6 跳转为http://www.tag.gg/123.html

 if ($request_uri ~ "/\?gid\=6"){return  http://www.tag.gg/123.html;}

16、绑定多个域名或泛绑定域名,访问不同域名会跳转到对应的https上
     应用场景:比如站点中绑定定了一个*.tag.gg 域名,并申请了一个泛的ssl证书,访问aa.tag.gg 跳转到https://aa.tag.gg 访问bbb.tag.gg 跳转到https://bbb.tag.gg等

if ($scheme = http ) {
return 301 https://$host$request_uri;
}

if ($server_port = 80 ) {
return 301 https://$host$request_uri;
}
17、 比如 www.tag.gg/m/dsff.html 跳转到 m.tag.gg/dsff.html 可用如下规则

if ($http_host ~ "^www.tag.gg$"){
    set $rule_0 1$rule_0;
}
if ($rule_0 = "1"){
    rewrite ^/m/$ http://m.www.tag.gg/ permanent;
}
    rewrite ^/m/(.*)$ http://m.www.tag.gg/$1 permanent;

正则表达式匹配,其中:

* ~ 为区分大小写匹配

* ~* 为不区分大小写匹配

* !~和!~*分别为区分大小写不匹配及不区分大小写不匹配

文件及目录匹配,其中:

* -f和!-f用来判断是否存在文件

* -d和!-d用来判断是否存在目录

* -e和!-e用来判断是否存在文件或目录

* -x和!-x用来判断文件是否可执行

flag标记有:

* last 相当于Apache里的[L]标记,表示完成rewrite

* break 终止匹配, 不再匹配后面的规则

* redirect 返回302临时重定向 地址栏会显示跳转后的地址

* permanent 返回301永久重定向 地址栏会显示跳转后的地址
技术小学生微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://blog.tag.gg/showinfo-7-35788-0.html
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
上一篇:Nginx站点目录及文件URL访问控制大全
下一篇:Nginx下sub_filter模块关键字替换方法