httpd redirect based on query parameters

2019-11-18 Thread Thomas
irect to: "http://newcompany.website/contact; I think the problem is that everything after the "?" is not taking into account by the httpd redirect logic (because by definition it's not part of the path?). But is there a way to achieve this with httpd? Thanks a lot, Thomas

Re: httpd redirect

2019-11-16 Thread Thomas
Ted, I feel so stupid nowof course this is impossible...thanks for the answer! All the best, Thomas On 16.11.19 07:39, Ted Unangst wrote: > Thomas wrote: >> Hi, >> >> I need to do this redirect with httpd: >> >> from: >> http://my.old.site/#info >> to: >>

Re: httpd redirect

2019-11-15 Thread Ted Unangst
Thomas wrote: > Hi, > > I need to do this redirect with httpd: > > from: > http://my.old.site/#info > to: > https://my.new.site/products/product.html browsers don't send #fragments to the server. so short answer: impossible.

httpd redirect

2019-11-15 Thread Thomas
Hi, I need to do this redirect with httpd: from: http://my.old.site/#info to: https://my.new.site/products/product.html Has anyone an idea to achieve this? I have tried several variations using the "location match" statement, but without success. Thanks a lot, Thomas

httpd redirect request

2015-01-07 Thread Zbigniew Kossowski
Many applications use urls without name php script eg. example.com/a/b/c. (instead of example.com/index.php/a/b/c) Is there any way to mimics such thing with httpd?