Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Building Websites with PHP Slim Basics & Twig Templates Including & Rendering

Can i load index.php instead of index.html?

<?php require 'vendor/autoload.php'; date_default_timezone_set('Asia/Phnom_Penh');

use Monolog\Logger;
use Monolog\Handler\StreamHandler;


$log = new Logger('name');
$log -> pushHandler (new StreamHandler('app.txt', Logger::WARNING));
$log -> addWarning('Oh No');

$app = new \Slim\Slim();

$app->get('/', function() use($app){
    $app->render('index.php');
});

$app->get('/about', function() use($app){
    $app->render('about.php');
});


$app->run();

?>

1 Answer

Tom Bedford
Tom Bedford
15,645 Points

Hi there, I have not done this particular course but generally you can congifure your server to load index.php by default by adding this line to your .htaccss file:

DirectoryIndex index.php index.html

This would look for and load index.php and if that wasn't found it would load index.html.