Re: Full URL parameter in nginx

2016-07-26 Thread Francis Daly
On Tue, Jul 26, 2016 at 03:46:19AM -0400, iivan wrote: Hi there, > ## nginx rule: > rewrite ^/(.*)?$ /index.cfm?event=saveURL=$1$is_args$args last; > > ## this URL: > http://www.mywebsite.com/http://www.anotherwebsite.com/index.php?lvl=cmspage&pageid=14&id_article=52 > > > ## Return only:

Re: Full URL parameter in nginx

2016-07-26 Thread iivan
Hi Francis, first of all, thank you for your intervention. Look: ## nginx rule: rewrite ^/(.*)?$ /index.cfm?event=saveURL=$1$is_args$args last; ## this URL: http://www.mywebsite.com/http://www.anotherwebsite.com/index.php?lvl=cmspage&pageid=14&id_article=52 ## Return only: http://www.anoth

Re: Full URL parameter in nginx

2016-07-25 Thread Francis Daly
On Mon, Jul 25, 2016 at 01:15:56PM -0400, iivan wrote: Hi there, > No one knows how to fix this? :( Start at the beginning. What request do you make of nginx? What response do you get from nginx? What response do you want instead? My guess is that your nginx config could be ok, and you coul

Re: Full URL parameter in nginx

2016-07-25 Thread iivan
No one knows how to fix this? :( Posted at Nginx Forum: https://forum.nginx.org/read.php?2,267813,268454#msg-268454 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Full URL parameter in nginx

2016-06-24 Thread iivan
Hi nanaya, today I run a few tests. this URL: http://www.website.com/index.php?lvl=cmspage&pageid=14&id_article=52 Return only: http://www.website.com/index.php?lvl=cmspage you would know how to fix? Posted at Nginx Forum: https://forum.nginx.org/read.php?2,267813,267866#msg-267866 __

Re: Full URL parameter in nginx

2016-06-23 Thread iivan
Thanks nanaya, It is the solution I was looking for! rewrite ^/(.*)?$ /index.cfm?event=saveURL=$1$is_args$args last; You are the best :) Posted at Nginx Forum: https://forum.nginx.org/read.php?2,267813,267830#msg-267830 ___ nginx mailing list nginx@n

Re: Full URL parameter in nginx

2016-06-23 Thread nanaya
Hi, On 2016/06/23 20:10, iivan wrote: Hi, I have this nginx rule: rewrite ^/(.*)?$ /index.cfm?event=saveURL=$1 last; - Which makes this work: http://mywebsite.com/http://notherwebsite.com/page.html - But if I pass a parameter like this: http://mywebsite.com/http://notherwebsite.com/page.html?

Full URL parameter in nginx

2016-06-23 Thread iivan
Hi, I have this nginx rule: rewrite ^/(.*)?$ /index.cfm?event=saveURL=$1 last; - Which makes this work: http://mywebsite.com/http://notherwebsite.com/page.html - But if I pass a parameter like this: http://mywebsite.com/http://notherwebsite.com/page.html?id=1 cuts off ?id=1 How can I fix this