这是我第一次使用 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”替换为“*”并尝试通过 IP 访问相同的 Url,则会发生此错误:
**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。