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 <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: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx