summaryrefslogtreecommitdiffstats
path: root/application/config/routes.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/config/routes.php')
-rw-r--r--application/config/routes.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/application/config/routes.php b/application/config/routes.php
index 1accd7b95..10d752071 100644
--- a/application/config/routes.php
+++ b/application/config/routes.php
@@ -52,9 +52,9 @@ defined('BASEPATH') OR exit('No direct script access allowed');
$route['default_controller'] = "main";
$route['user/(:any)'] = "user/$1";
$route['file/multipaste/(:any)'] = "file/multipaste/$1";
-$route['file/(:any)'] = "file/file_default/$1";
-$route['tools/(:any)'] = "tools/$1";
+$route['file/(.+)'] = "main/$1";
+$route['tools/(.+)'] = "tools/$1";
$route['api/(.+)'] = "api/route/$1";
-$route['(.+)'] = "file/file_default/index/$1";
+$route['(.+)'] = "main/index/$1";
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;