您好我想在wamp中使用名为Alto Router的软件包。
在www root中我用
更改了索引页面<?php
require( __DIR__ . "/vendor/autoload.php");
$router = new AltoRouter();
$router->map('GET','/',function(){
include(__DIR__ . "/project/home.php");
});
$router->map('GET','/page1',function(){
include(__DIR__ . "/project/page1.php");
});
$match = $router->match();
if($match && is_callable($match['target'])){
call_user_func_array($match['target'],$match['params']);
}
else{
//no route found
header($_SERVER['SERVER_PROTOCOL'].'404 Not Found');
}
主页的重定向是好的 但如果我输入localhost / page1它会重定向到404错误页面.. 我认为这是因为默认的wamp服务器设置等。 无论如何要改变它吗?