我在Laravel 4中遇到了URL帮助方法的问题。基本上发生的事情是在我的本地环境中输出链接很好:
"http://127.0.0.1:8080/route" goes to "/route"
但是,当我将此部署到暂存环境时,我遇到了这个问题,Laravel将其输出为:
"http://example.com/http://example.com/route"
所有生成网址的代码都会发生这种情况,例如:
{{link_to_action('ProjectsController@create', 'Create Project')}}
会创建:
http://example.com/http://example.com/projects/create
有什么想法吗? (我在登台环境中使用Apache 2.2,CentOS 6和PHP 5.5)