We have built our the latest applications on a simple PHP framework we created that makes it easy to deploy our applications
When installing apps on a folder you will need to make a simple tweak. You can watch the video below or follow the instructions below the video
Step 1:
Open routes.php files located inside the src folder and you will see a commented out line of code that looks like the one below
// Router::group(['prefix' => '/foldername'], function() {
and the line below at the end of the file
// });
Step 2:
Uncomment the two lines above by removing the two forward slash before them. //
Step 3:
Rename the foldername to the name of your folder for example myapp, and you will have something like.
Router::group(['prefix' => '/myapp'], function() {
...
});
That’s all!