nginx 服务器使用伪静态实现 301自定义跳转的方法

 使用伪静态成功实现了从 526net.com 到 www.526net.com 的跳转。

只需要在nginx中添加以下伪静态规则即可:
单个文件或者目录也可以使用此方法做301跳转

rewrite ^([^\.]*)/blog/cms/22\.html$ $1/blog/zz/22.html permanent;

下面是整站 301的方法

if ($host = ‘526net.com’ ) {
rewrite ^/(.*)$ http://www.526net.com/$1 permanent;
}
if (!-e $request_filename) {
return 404;
}

 

注意事项:需要进行跳转的网址只需要写在第二行即可,跳转到的网址需要加上绝对的地址,即必须加上"http://"
把以上代码中的网址改为你自己的。如果有其他服务器使用伪静态规则实现自定义的跳转功能的欢迎分享。

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注