I am working on cakephp project. I have removed index.php from URL using .htaccess file and now I want to remove view name from URL & add some other two varying parameter. Suppose I choose country & city then these two parameter should appear in URL on selecting them.
The problem I am facing is as cakephp takes
www.example.com/Controllername/viewname
But my requirement is like this
www.example.com/Controllername/param1/param2
If I pass this way It looks for param1 as controller and param2 as view.
Initially should be like:
www.example.com/Controllername/
In your
APP/routes.php:and your controller:
When generating links:
Order matters. Change
paramXto anything you want i.e.countryandtownnote this does not cover:
controllername/param1– both must be present in this example.There are other ways to achieve this.