leancloud / php-sdk

LeanCloud PHP SDK
Apache License 2.0
53 stars 23 forks source link

内置服务器不能正确路由带有 dot 的 url #136

Closed juvenn closed 7 years ago

juvenn commented 7 years ago

本地启动 php -S 0.0.0.0:3000 -t public 的服务,不能正确路由带有 dot 的 url , 比如: http://localhost:3000/1.1/functions/_ops/sayHello 会报告 Not Found.

https://bugs.php.net/bug.php?id=61286

juvenn commented 7 years ago

已经在 lean-cli 提供 router.php 处理。可以同时指定 document root 及 router 来解决:

php -S 0.0.0.0:3000 -t public router.php