我在 CI3 上开始了一个新项目。我用 MAMP 在我的 MB 上开发了它。一切正常!
今天下午我尝试在我的 VM serverur ( Ubuntu 18.04, php 7.2.19 ) 上发布代码。欢迎页面运行良好,但无法使用路由。
localhost/index.php -> good
localhost/index.php/push/ -> 404 ( still working on MAMP )
我尝试使用 .htacces,在 router.php 文件中创建一个路由,....
/application/controllers/api.php :
class Push extends REST_Controller{
public function _construct(){
....
}
public function index_post(...){
...
}
}
始终仅在 LAMP 上找不到 404
qq_笑_17