PHP / NGINX:301重定向

时间:2011-10-18 13:51:22

标签: php redirect nginx

我在PHP中进行临时重定向更改标题。

但是我现在想在Nginx中直接进行简单的301页面重定向:

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

为:

http://domain.com/index.htm

我试过了:

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

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

有什么想法吗?

感谢。

1 个答案:

答案 0 :(得分:4)

简单地说(在“location / {}”之外):

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

顺便说一句,PHP还有一种方法可以重定向301。