redirection issue

Adie Nurahmadie nurahmadie at gmail.com
Thu Oct 2 17:26:45 UTC 2014


On Fri, Oct 3, 2014 at 12:22 AM, Kurogane <nginx-forum at nginx.us> wrote:

> Hello All,
>
> I am facing some issue regarding nginx redirection i'm unable to fix it. I
> want to create redirect non www to www but always redirect me to
> default_server how i can fix this issue.
>
> This is what i have
>
> server {
>                 listen 80 default_server;
>                 server_name localhost;
>                 root /home/nginx/default/public;
>
> ....
> }
>
>
> server {
>         listen 80;
>         server_name domain.com;
>         return 301 $scheme://www.domain.com$request_uri;
>         root  /home/user/public_html;
> ....
> }
>
> When i go to domain.com or www.domain.com i got default document root
>
> If i change server_name domain.com; to server_name domain.com
> www.domain.com; i got redirect loop issue.
>
> Then how i suppose to solve this problem.
>

Do you have another server block with `server_name www.domain.com` which
supposed to handle the actual request?


>
> Posted at Nginx Forum:
> http://forum.nginx.org/read.php?2,253713,253713#msg-253713
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
>



-- 
regards,
Nurahmadie
--
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20141003/71e4736d/attachment.html>


More information about the nginx mailing list