Thank you Daniel, "AcceptPathInfo On” seems to be the right approach. Where can I set this on Apache?
Best,
Marcel
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 yourpayment form. Or possibly redirect to /pay/?a1b2c and usedocument.location.search.substr(1) to fetch the arguments in _javascript_.with regards,Daniel.---------------------------------------------------------------------To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxxFor additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx
|