我试图通过使用 slim 来构建一个亵渎过滤 API。这是该api的链接。
Link : http://www.employeeexperts.com/Profanity/index.php/rest/check/hello
在链接的末尾,我附加了“你好”这个词以进行亵渎检查。到目前为止,它工作正常。但是,当我在单词末尾添加任何点(。)时(例如:hello..),Slim 将控件重定向到索引页面。
我的 GET 路由器代码是这样的..
$app->get('/service/:method/:str', function ($method, $str) use ($app) {
// Internal codes goes here
});
任何人都可以帮我弄清楚如何阻止这种情况。
问候