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:
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
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
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
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
__
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
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?
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