/
home
/
u417168693
/
domains
/
devtechera.com
/
public_html
/
app
/
Config
/
/home/u417168693/domains/devtechera.com/public_html/app/Config
mkdir
upload
Name
Size
Mode
Actions
Boot/
-
0755
rm
App.php
8174
0644
edit
dl
rm
Autoload.php
3031
0644
edit
dl
rm
Cache.php
6245
0644
edit
dl
rm
Constants.php
3986
0644
edit
dl
rm
ContentSecurityPolicy.php
4226
0644
edit
dl
rm
Cookie.php
3554
0644
edit
dl
rm
Cors.php
3511
0644
edit
dl
rm
CURLRequest.php
551
0644
edit
dl
rm
Database.php
6988
0644
edit
dl
rm
DocTypes.php
3080
0644
edit
dl
rm
Email.php
2333
0644
edit
dl
rm
Encryption.php
2844
0644
edit
dl
rm
Events.php
1875
0644
edit
dl
rm
Exceptions.php
4001
0644
edit
dl
rm
Feature.php
725
0644
edit
dl
rm
Filters.php
3358
0644
edit
dl
rm
ForeignCharacters.php
174
0644
edit
dl
rm
Format.php
2614
0644
edit
dl
rm
Generators.php
2133
0644
edit
dl
rm
Honeypot.php
855
0644
edit
dl
rm
Images.php
708
0644
edit
dl
rm
Kint.php
1983
0644
edit
dl
rm
Logger.php
5995
0644
edit
dl
rm
Migrations.php
1592
0644
edit
dl
rm
Mimes.php
15720
0644
edit
dl
rm
Modules.php
2313
0644
edit
dl
rm
Optimize.php
944
0644
edit
dl
rm
Pager.php
1189
0644
edit
dl
rm
Paths.php
2839
0644
edit
dl
rm
Publisher.php
807
0644
edit
dl
rm
Routes.php
5343
0644
edit
dl
rm
Routing.php
3681
0644
edit
dl
rm
Security.php
3415
0644
edit
dl
rm
Services.php
921
0644
edit
dl
rm
Session.php
4573
0644
edit
dl
rm
Toolbar.php
4556
0644
edit
dl
rm
UserAgents.php
9813
0644
edit
dl
rm
Validation.php
1192
0644
edit
dl
rm
View.php
2112
0644
edit
dl
rm
Edit:
/home/u417168693/domains/devtechera.com/public_html/app/Config/Routing.php
(3681B)
<?php /** * This file is part of CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace Config; use CodeIgniter\Config\Routing as BaseRouting; /** * Routing configuration */ class Routing extends BaseRouting { /** * For Defined Routes. * An array of files that contain route definitions. * Route files are read in order, with the first match * found taking precedence. * * Default: APPPATH . 'Config/Routes.php' * * @var list<string> */ public array $routeFiles = [ APPPATH . 'Config/Routes.php', ]; /** * For Defined Routes and Auto Routing. * The default namespace to use for Controllers when no other * namespace has been specified. * * Default: 'App\Controllers' */ public string $defaultNamespace = 'App\Controllers'; /** * For Auto Routing. * The default controller to use when no other controller has been * specified. * * Default: 'Home' */ public string $defaultController = 'Home'; /** * For Defined Routes and Auto Routing. * The default method to call on the controller when no other * method has been set in the route. * * Default: 'index' */ public string $defaultMethod = 'index'; /** * For Auto Routing. * Whether to translate dashes in URIs for controller/method to underscores. * Primarily useful when using the auto-routing. * * Default: false */ public bool $translateURIDashes = false; /** * Sets the class/method that should be called if routing doesn't * find a match. It can be the controller/method name like: Users::index * * This setting is passed to the Router class and handled there. * * If you want to use a closure, you will have to set it in the * routes file by calling: * * $routes->set404Override(function() { * // Do something here * }); * * Example: * public $override404 = 'App\Errors::show404'; */ public ?string $override404 = null; /** * If TRUE, the system will attempt to match the URI against * Controllers by matching each segment against folders/files * in APPPATH/Controllers, when a match wasn't found against * defined routes. * * If FALSE, will stop searching and do NO automatic routing. */ public bool $autoRoute = false; /** * For Defined Routes. * If TRUE, will enable the use of the 'prioritize' option * when defining routes. * * Default: false */ public bool $prioritize = false; /** * For Defined Routes. * If TRUE, matched multiple URI segments will be passed as one parameter. * * Default: false */ public bool $multipleSegmentsOneParam = false; /** * For Auto Routing (Improved). * Map of URI segments and namespaces. * * The key is the first URI segment. The value is the controller namespace. * E.g., * [ * 'blog' => 'Acme\Blog\Controllers', * ] * * @var array<string, string> */ public array $moduleRoutes = []; /** * For Auto Routing (Improved). * Whether to translate dashes in URIs for controller/method to CamelCase. * E.g., blog-controller -> BlogController * * If you enable this, $translateURIDashes is ignored. * * Default: false */ public bool $translateUriToCamelCase = false; }
Save
cmd:
run