We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Routing for domain.com/https://www...

Hi, I am new in Phalcon. My example url:

https://domain.com/https://www.example.com/?aaa=bbb

I want to use getParam() to get https://www.example.com/?aaa=bbb

How to do this? Thanks for any help.

hi xluger,

You should urlencode this url first, then you should be able to retrieve it either as an argument to an action or with $this->request->getQuery();.