Symfony rename parameters in ugly GET url

273 Views Asked by At

After submit a GET form, The app works fine but I have this ugly URL :

http//mywebsite.local/page/240?appbundle_options%5Bstart%5D=25%2F09%2F2017&appbundle_options%5Bend%5D=30%2F09%2F2017&appbundle_options%5B_token%5D=_c2ZjonEHI3_1vLNcyp3xKRzcehqz02lguHgfx6Lzv8

I want to know if is it possible to "clean" that into (example)

http//mywebsite.local/page/240?start=15-08-2017&end=22-12-2018&token=abcdefgh123456789

it may be a simple dream but in case there is a clean and sensible method, I would like to know it, thank you

1

There are 1 best solutions below

3
On BEST ANSWER

You can make the form action POST.

Or check the symfony routing documentation.

With the routing your url can look like this:

website.com/number/1/name/test

but with a get form this might become very long.