Slim Framework always return 404 Error

后端 未结 8 449
独厮守ぢ
独厮守ぢ 2021-02-01 04:27

These days i\'m using Slim Framework as my simplest tool to develop the php web api. Using these two articles:

  • Coenraets
  • CodingThis
8条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-01 05:02

    For me the problem was that I'd forgotten to provide a .htaccess file in my document root.

    .htaccess

    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule . index.php [L]
    

提交回复
热议问题