| Server IP : 103.161.17.216 / Your IP : 216.73.216.1 Web Server : nginx/1.18.0 System : Linux tipsysaigoncharming 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/app.houseland.info/application/config/ |
Upload File : |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| URI ROUTING
| -------------------------------------------------------------------------
| This file lets you re-map URI requests to specific controller functions.
|
| Typically there is a one-to-one relationship between a URL string
| and its corresponding controller class/method. The segments in a
| URL normally follow this pattern:
|
| example.com/class/method/id/
|
| In some instances, however, you may want to remap this relationship
| so that a different class/function is called than the one
| corresponding to the URL.
|
| Please see the user guide for complete details:
|
| http://codeigniter.com/user_guide/general/routing.html
|
| -------------------------------------------------------------------------
| RESERVED ROUTES
| -------------------------------------------------------------------------
|
| There are three reserved routes:
|
| $route['default_controller'] = 'welcome';
|
| This route indicates which controller class should be loaded if the
| URI contains no data. In the above example, the "welcome" class
| would be loaded.
|
| $route['404_override'] = 'errors/page_missing';
|
| This route will tell the Router which controller/method to use if those
| provided in the URL cannot be matched to a valid route.
|
| $route['translate_uri_dashes'] = FALSE;
|
| This is not exactly a route, but allows you to automatically route
| controller and method names that contain dashes. '-' isn't a valid
| class or method name character, so it requires translation.
| When you set this option to TRUE, it will replace ALL dashes in the
| controller and method URI segments.
|
| Examples: my-controller/index -> my_controller/index
| my-controller/my-method -> my_controller/my_method
*/
$route['default_controller'] = 'clients';
$route['404_override'] = '';
$route['translate_uri_dashes'] = false;
/**
* Dashboard clean route
*/
$route['admin'] = 'admin/dashboard';
/**
* Misc controller routes
*/
$route['admin/access_denied'] = 'admin/misc/access_denied';
$route['admin/not_found'] = 'admin/misc/not_found';
/**
* Staff Routes
*/
$route['admin/profile'] = 'admin/staff/profile';
$route['admin/profile/(:num)'] = 'admin/staff/profile/$1';
$route['admin/tasks/view/(:any)'] = 'admin/tasks/index/$1';
/**
* Items search rewrite
*/
$route['admin/items/search'] = 'admin/invoice_items/search';
/**
* In case if client access directly to url without the arguments redirect to clients url
*/
$route['/'] = 'clients';
/**
* @deprecated
*/
$route['viewinvoice/(:num)/(:any)'] = 'invoice/index/$1/$2';
/**
* @since 2.0.0
*/
$route['invoice/(:num)/(:any)'] = 'invoice/index/$1/$2';
/**
* @deprecated
*/
$route['viewestimate/(:num)/(:any)'] = 'estimate/index/$1/$2';
/**
* @since 2.0.0
*/
$route['estimate/(:num)/(:any)'] = 'estimate/index/$1/$2';
$route['subscription/(:any)'] = 'subscription/index/$1';
/**
* @deprecated
*/
$route['viewproposal/(:num)/(:any)'] = 'proposal/index/$1/$2';
/**
* @since 2.0.0
*/
$route['proposal/(:num)/(:any)'] = 'proposal/index/$1/$2';
/**
* @since 2.0.0
*/
$route['contract/(:num)/(:any)'] = 'contract/index/$1/$2';
/**
* @since 2.0.0
*/
$route['knowledge-base'] = 'knowledge_base/index';
$route['knowledge-base/search'] = 'knowledge_base/search';
$route['knowledge-base/article'] = 'knowledge_base/index';
$route['knowledge-base/article/(:any)'] = 'knowledge_base/article/$1';
$route['knowledge-base/category'] = 'knowledge_base/index';
$route['knowledge-base/category/(:any)'] = 'knowledge_base/category/$1';
/**
* @deprecated 2.2.0
*/
if (isset($_SERVER['REQUEST_URI']) && strpos($_SERVER['REQUEST_URI'], 'add_kb_answer') === false) {
$route['knowledge-base/(:any)'] = 'knowledge_base/article/$1';
$route['knowledge_base/(:any)'] = 'knowledge_base/article/$1';
$route['clients/knowledge_base/(:any)'] = 'knowledge_base/article/$1';
$route['clients/knowledge-base/(:any)'] = 'knowledge_base/article/$1';
}
/**
* @deprecated 2.2.0
* Fallback for auth clients area, changed in version 2.2.0
*/
$route['clients/reset_password'] = 'authentication/reset_password';
$route['clients/forgot_password'] = 'authentication/forgot_password';
$route['clients/logout'] = 'authentication/logout';
$route['clients/register'] = 'authentication/register';
$route['clients/login'] = 'authentication/login';
// Aliases for short routes
$route['reset_password'] = 'authentication/reset_password';
$route['forgot_password'] = 'authentication/forgot_password';
$route['login'] = 'authentication/login';
$route['logout'] = 'authentication/logout';
$route['register'] = 'authentication/register';
/**
* Terms and conditions and Privacy Policy routes
*/
$route['terms-and-conditions'] = 'terms_and_conditions';
$route['privacy-policy'] = 'privacy_policy';
/**
* @since 2.3.0
* Routes for admin/modules URL because Modules.php class is used in application/third_party/MX
*/
$route['admin/modules'] = 'admin/mods';
$route['admin/modules/(:any)'] = 'admin/mods/$1';
$route['admin/modules/(:any)/(:any)'] = 'admin/mods/$1/$2';
// Public single ticket route
$route['forms/tickets/(:any)'] = 'forms/public_ticket/$1';
/**
* @since 2.3.0
* Route for clients set password URL, because it's using the same controller for staff to
* If user addded block /admin by .htaccess this won't work, so we need to rewrite the URL
* In future if there is implementation for clients set password, this route should be removed
*/
$route['authentication/set_password/(:num)/(:num)/(:any)'] = 'admin/authentication/set_password/$1/$2/$3';
// For backward compatilibilty
$route['survey/(:num)/(:any)'] = 'surveys/participate/index/$1/$2';
if (file_exists(APPPATH . 'config/my_routes.php')) {
include_once(APPPATH . 'config/my_routes.php');
}