Answer the question
In order to leave comments, you need to log in
how to do nginx mobile rewrite
Making a proxy for the mobile version
server {
listen 80;
server_name m.example.com;
location / {
proxy_pass http://example.com/mobile/;
proxy_redirect off;
proxy_set_header Host example.com;
}
}
......
location / {
rewrite /mobile(.*) /$1 break;
proxy_pass http://example.com/mobile/;
proxy_redirect off;
proxy_set_header Host example.com;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question