Nginx doesn't redirect www no m in Safari, iPhone, iPad

oscaretu . oscaretu at gmail.com
Tue Jul 7 12:32:30 UTC 2015


Yo don't need to escape the "!" if you delimit the URL with single
quotes...

On Tue, Jul 7, 2015 at 11:28 AM, ramsoft75 <nginx-forum at nginx.us> wrote:

> Hi there all and thank's for the help
>
> Dear oscaretu, the curl was tested with " doesn't help, because ! is a
> special character it needs a escaope after "\", so the correct curl command
> for the terminal is :
>
> $ curl -A iPad -i http://www.domain.com/#\!/pt/--item-view/en/3190/Wok
>
> Dear Francis Daly
>
> For the initial configuration :
>
> if ($http_user_agent ~* '(iPhone|iPod|iPad|Android|BlackBerry|webOS|Windows
> Phone)') {
>            rewrite ^ http://m.domain.com/$request_uri;
>     }
>
>
> For the example above the output in terminal is :
>
> HTTP/1.1 302 Moved Temporarily
> Server: nginx
> Date: Tue, 07 Jul 2015 09:19:47 GMT
> Content-Type: text/html
> Content-Length: 154
> Connection: keep-alive
> Location: http://m.domain.com//
>
> <html>
> <head><title>302 Found</title></head>
> <body bgcolor="white">
> <center><h1>302 Found</h1></center>
> <hr><center>nginx</center>
> </body>
> </html>
>
> It's the same if i changed to :
>
>     if ($http_user_agent ~*
> '(iPhone|iPod|iPad|Android|BlackBerry|webOS|Windows Phone)') {
>            rewrite ^/$ http://m.domain.com/$request_uri;
>     }
>
> The problem is not from Nginx but from Safari witch doesn't send the url
> after #, the Safari removes the fragment.
>
> There are some documentation about this in :
>
>
> http://randomproblems.com/parameter-passing-redirect-craziness-301-redirects-fragment-identifiers-hash-query-string-variables/
> http://news.qooxdoo.org/http-redirects-and-loss-of-fragment-identifiers
>
> The question know how to handle this # problem with Safari.
>
> Thank's for the help
>
> Posted at Nginx Forum:
> http://forum.nginx.org/read.php?2,260033,260110#msg-260110
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
>



-- 
Oscar Fernandez Sierra
oscaretu at gmail.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20150707/230f5e11/attachment.html>


More information about the nginx mailing list