这是我第一次使用Slim,我正在开发一个REST Api。
当我使用localhost( http://localhost:8000/svn/sites/branches/project_name/public/api/cidades )访问URL时,它工作正常,但我需要通过IP访问本地网络。
在此模式下,我的httpd.conf文件配置如下:“Listen localhost:8000”。
如果我将httpd.conf的“localhost”替换为“*”并尝试访问相同的Url,但是通过IP,则会发生以下错误:
**Not Found**
The requested URL /svn/sites/branches/project_name/public/api/cidades was not found on this server.
与index.php位于同一文件夹中的.htaccess,内容如下:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
有人可以帮助我了解我需要配置什么才能通过本地网络访问api?感谢的。
Obs:我在Windows 10上使用EasyPHP。