Thank you Daniel, "AcceptPathInfo On” seems to be the right approach. Where can I set this on Apache?
Best, Marcel > On 09 Nov 2015, at 11:27, Daniel Gruno <[email protected]> wrote: > > On 11/09/2015 11:24 AM, Marcel Florian wrote: >> Hello guys, >> >> I have a URL with the following syntax: >> >> |https://www.domain.com/pay/a1b2c <https://www.domain.com/pay/a1b2c> >> <http://www.domain.com/pay/a1b2c <http://www.domain.com/pay/a1b2c>>| >> >> In the |/pay| directory I have a simple payment form. I am using >> JavaScript to get the URL appendix |a1b2c| and process it in order to >> get further data to display in the payment form: >> >> |varurl =window.location.href;varappendix =url.split("/").pop();...| >> >> But if I open the URL in the browser, Apache says (of course): >> >> |NotFoundTherequested URL /pay/a1b2c was notfound on thisserver.| >> >> How can I solve this problem? Which Apache config do I need? >> >> Thank you! >> >> Best, Marcel >> > > Either use "AcceptPathInfo On" or use a rewrite rule to redirect to your > payment form. Or possibly redirect to /pay/?a1b2c and use > document.location.search.substr(1) to fetch the arguments in javascript. > > with regards, > Daniel. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > <mailto:[email protected]> > For additional commands, e-mail: [email protected] > <mailto:[email protected]>
