Welcome! Log In Create A New Profile

Advanced

RE: rewrite don't work in a multilanguage MVC site

Fernando García Torres
October 25, 2011 02:18PM
Tried, and same results, redirect OK but 404 response.
Thanks!!

> Date: Tue, 25 Oct 2011 18:15:38 +0100
> From: appa@perusio.net
> To: nginx@nginx.org
> Subject: Re: rewrite don't work in a multilanguage MVC site
>
> On 25 Out 2011 17h56 WEST, olfativo@hotmail.com wrote:
>
> > [1 <multipart/alternative (7bit)>]
> > [1.1 <text/plain; iso-8859-1 (quoted-printable)>]
> >
> > Hi!Im trying to move from Apache to nginx (v1.1.6), but you know,
> > rewrite newbie here... In my site when a user types http://site.com
> > he's redirected to http://site.com/en/, and all the other URLs are
> > internally handled by an index.php. This is my actual Apache
>
> Try this:
>
> At the http level.
>
> map $http_accept_language $is_english {
> default 0;
> ~^en 1;
> }
>
> map $http_accept_language $is_spanish {
> default 0;
> ~^es 1;
> }
>
> location / {
>
> expires 30d;
>
> if ($is_english) {
> return 301 /en;
> }
>
> if ($is_spanish) {
> return 301 /es;
> }
>
> location /es {}
>
> location /en {}
>
> try_files $uri $uri/ /index.php?ctr=$uri;
> }
>
> location ~\.php$ {
> # PHP stuff
> }
>
> --- appa
>
> _______________________________________________
> nginx mailing list
> nginx@nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

rewrite don't work in a multilanguage MVC site

Fernando García Torres October 25, 2011 12:58PM

Re: rewrite don't work in a multilanguage MVC site

António P. P. Almeida October 25, 2011 01:16PM

RE: rewrite don't work in a multilanguage MVC site

Fernando García Torres October 25, 2011 02:18PM

Re: rewrite don't work in a multilanguage MVC site

António P. P. Almeida October 25, 2011 02:34PM

RE: rewrite don't work in a multilanguage MVC site

Fernando García Torres October 25, 2011 03:02PM

Re: rewrite don't work in a multilanguage MVC site

Francis Daly October 25, 2011 04:24PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 217
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready