简体   繁体   中英

Slim PHP Framework Help

I just added the Slim framework to my website in order to create a rest API. But I currently have a problem. I wrote this code as a test to check to see if a get request would work, but whenever I try calling the url, http://mysite.com/api/rest/hello/max , I get a website not found error. Please can you tell me what is going wrong?

Slim::init();

Slim::get('/hello/:name', 'hello');

function hello($name) {
    echo "Hello, $name!";
}

Slim::run();

您可能忘记将Slim随附的.htaccess文件放在与index.php相同的目录中。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM