dongsanhu4784 2013-05-13 19:53
浏览 30
已采纳

如何从Laravel Form Builder中删除“index.html /”open()

I have a form in Laravel 4 that uses:

{{ Form::open('login') }}

This generates the following:

<form method="POST" action="http://[...]/public/index.php/login" accept-charset="UTF-8">

I have .htaccess et al. configured so that "index.html" is hidden from the URI, so I would like it hidden from these generated URLs, too. Has anyone run into this already and solved it yet?

  • 写回答

1条回答 默认 最新

  • dtc9222 2013-05-13 23:12
    关注

    You need to edit application/config/application.php and remove the index.php. This will effect the form and any URL's generated by route().

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?