Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: rewrite & 404
- To: nginx-ru@xxxxxxxxx
- Subject: Re: rewrite & 404
- From: Aleksandr Sytar <sytar.alex@xxxxxxxxx>
- Date: Tue, 11 Oct 2011 14:33:52 +0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=IKdz99EutAKKbieFJS0v8fUedLb03lMqGYFhoPRuSSY=; b=Cts00ocduhHdkwlKn5Wis8S9YJ2eeqkj4fsdXvh7RJ8Y0eV+uMaUYCouLYuYeywaTt XtZ4dXVM8WGkE6fqkNtnb5iAiMOtCcS19k6IWrn34iCWmQ5l0J4/J/XCIAQZZ69vaaOT +onOOuNbaE20/nDQSg8Vyk9C0J4EEuq61MPQs=
- In-reply-to: <4E941A2A.2020309@xxxxxxx>
- References: <4E941A2A.2020309@xxxxxxx>
11 октября 2011 г. 14:27 пользователь <b_rom@xxxxxxx> написал:
> Приветствую,
>
> необходимо организовать безусловное перенаправление всего с
> http://subdomain.domain.com на http://domain.com/subdomain/.
> Но при этом все 404-е редиректить именно в корень домена, т.е. на
> http://domain.com
server {
server_name subdomain.domain.com;
location / { return 301 domain.com/subdomain/; }
}
server {
server_name domain.com;
location /subdomain { error_page 404 /; }
}
>
> Существует ли (в принципе) красивое (или не очень) решение с помощью nginx?
> Как реврайтить первое условие понятно, в тупике относительно 404-х
Как-то так наверно
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|