Я сделал файл .htaccess, и это работает, но маршрутизация Alto Router не
<?php
require 'altorouter.php';
$router = new AltoRouter();
$router->setBasePath('/rimaxxApi/');
$router->map('GET', '/', function(){
echo 'It is working';
});
$match = $router->match();
// Here comes the new part, taken straight from the docs:
// call closure or throw 404 status
if( $match && is_callable( $match['target'] ) ) {
call_user_func_array( $match['target'], $match['params'] );
} else {
// no route was matched
header( $_SERVER["SERVER_PROTOCOL"] . ' 404 Not Found');
}
?>
Путь находится в подпапке
С этим кодом я получаю ошибку «404», но у меня есть определенный маршрут.
Пытаться $router->setBasePath('/rimaxxApi');
Других решений пока нет …