I'd like to make two simple 301 page redirections.
For example:
http://domain.com/example.php?var=value
and:
http://domain.com/some-page
Both redirecting to:
http://domain.com/index.htm
Which is the index of the domain.
I tried:
location / {
index index.htm index.php;
rewrite example.php?var=value / permanent;
}
But it is not working...
Any ideas?
Thanks.