preg_match(): Compilation failed |
<?php
defined('BASEPATH') OR exit('No direct script access allowed'); $route['posts/create'] = 'posts/create'; $route['(posts/(:any)'] = 'posts/view/$1'; $route['posts'] = 'posts/index'; $route['default_controller'] = 'pages/view'; $route['(:any)'] = 'pages/view/$1'; $route['404_override'] = ''; $route['translate_uri_dashes'] = FALSE; This is the code. How can I fix this |
Messages In This Thread |
preg_match(): Compilation failed - by naeemiit08 - 01-25-2020, 06:02 AM
RE: preg_match(): Compilation failed - by jreklund - 01-25-2020, 07:25 AM
RE: preg_match(): Compilation failed - by naeemiit08 - 01-25-2020, 09:31 AM
RE: preg_match(): Compilation failed - by jreklund - 01-25-2020, 11:39 AM
RE: preg_match(): Compilation failed - by naeemiit08 - 01-27-2020, 10:09 AM
|