新装的symfony,本地正常,但是远程访问不行,怎么回事?
根据官网的教程学习symfony,建立第一个页面,就那那个luky/number的页面。代码如下:
// src/AppBundle/Controller/HelloController.php
namespace AppBundle\Controller;
use Symfony\Component\HttpFoundation\Response;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
class HelloController
{
/**
* @Route("/hello/{name}", name="hello")
*/
public function indexAction($name)
{
return new Response('<html><body>Hello '.$name.'!</body></html>');
}
}
这个页面通过http://localhost:8000/lucky/number,或者域名http://mydomain.com/lucky/number都可以访问,很正常,但是他第二个例子,生成json数据的额,却只能在本地访问,不能通过域名访问,下面是代码:
// src/AppBundle/Controller/LuckyController.php
namespace AppBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Response;
class LuckyController
{
/**
* @Route("/api/lucky/number")
*/
public function apiNumberAction()
{
$data = array(
'lucky_number' => rand(0, 100),
);
return new Response(
json_encode($data),
200,
array('Content-Type' => 'application/json')
);
}
}
通过域名访问会提示:
Oops! An Error Occurred
The server returned a "404 Not Found".
Something is broken. Please let us know what you were doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused.
不知道是什么原因,Rewrite也已经开启了,别的代码都没有动,一步一步都是按照教程来的。会是哪里的问题呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也遇到了这个问题,然后我看了文档上有这么一个tips
所以你需要这样访问:
http://mydomain.com/app_dev.php/api/lucky/number
这样可以正常访问了