Nginx:简单的页面重定向

Nginx:简单的页面重定向

我想做两个简单的 301 页面重定向。

例如:

http://domain.com/example.php?var=value

和:

http://domain.com/some-page

均重定向至:

http://domain.com/index.htm

这是域的索引。

我试过:

location / {
    index index.htm index.php;
    rewrite example.php?var=value / permanent;
}

但它不起作用......

有任何想法吗?

谢谢。

答案1

简单地说(出于“location/{}”):

rewrite /example.php?var=value / permanent;

或更好:

rewrite /example.php?(.*) / permanent;

顺便说一句,PHP 也有办法进行 301 重定向。

相关内容