How to implement cleaner url in custom page . my url http://localhost/memoupdate/memolist?type=received&id=2 to http://localhost/memoupdate/memolist/received/2
You may enter your own route, read Custom Files → Path → Case 1.
In addition, you may put this following code into your Custom File content to know the value of each route:
<?php
echo "<br>Route 0: " . Route(0);
echo "<br>Route 1: " . Route(1);
echo "<br>Route 2: " . Route(2);
echo "<br>Route 3: " . Route(3);
?>
For example, if your route is mypage/{param1}/{param2}, retrieving the values by name is recommended, e.g. Route("param1"), Route("param2").