I want to change this url into pretty url. how can i do it
index.php?r=adv%2Findex&advSearch%5BCategory%5D=&advSearch%5BBrand%5D=&advSearch%5BModel%5D=&advSearch%5BVCondition%5D=&advSearch%5BFuelType%5D=
I want to change this url into pretty url. how can i do it
index.php?r=adv%2Findex&advSearch%5BCategory%5D=&advSearch%5BBrand%5D=&advSearch%5BModel%5D=&advSearch%5BVCondition%5D=&advSearch%5BFuelType%5D=
That is a long query string there is nothing automatic in yii to make that look any nicer, pretty URLs are designed to make the route look more friendly to a user.
Anything you might want to do to make it nicer is a pure HTTP question such as using POST to hide the values in a form or doing something hacky on the server.