Welcome Guest, Not a member yet? Register   Sign In
404 - File Not Found
#3

(11-04-2020, 12:02 AM)InsiteFX Wrote: You need to set your app/Config/app.php base_url

PHP Code:
http://192.168.1.15:8080/ 

You should also edit the env file in the root with index.php end add your base url there also.

Change the env CI_ENVIRONMENT = development save the file as .env

Make sure that you setup the routes for the tutorials.

app/Config/Routes.php add to the bottom below the home route.

PHP Code:
$routes->match(['get''post'], 'news/create''News::create');
$routes->get('news/(:segment)''News::view/$1');
$routes->get('news''News::index');
$routes->get('(:any)''Pages::view/$1'); 
I agree with your opinion
Reply


Messages In This Thread
404 - File Not Found - by mainecat - 11-03-2020, 08:46 AM
RE: 404 - File Not Found - by InsiteFX - 11-04-2020, 12:02 AM
RE: 404 - File Not Found - by moonly holds - 11-29-2020, 11:45 PM



Theme © iAndrew 2016 - Forum software by © MyBB