Hi 各位大大好,
小的是PHP初學者, 最近剛開始嘗試slim framework
在網路上看到這個基本教學影片跟著實作:
"PHP Slim Framework Simple Demo"(http://youtu.be/26CRc89gN10)
實作過程很順利,但是後來產生一個bug不知道是哪裡出了問題?
程式大致長得像是這樣的:
// helloslim.php
<?
require 'Slim/Slim.php';
\Slim\Slim::registerAutoloader();
$app = new \Slim\Slim();
$app->get('/hello/:name', function ($name) {
/*render through some template page*/
});
$app->run();
?>
網址列輸入這樣是正常的:
localhost/dir/helloslim.php/hello/yoyo
但如果在尾巴多放'/',網頁就不會load CSS了
localhost/dir/helloslim.php/hello/yoyo/
不知道我可能漏掉甚麼呢?
謝謝!