php - How to remove "index.html/" from Laravel Form Builder open() -
i have form in laravel 4 uses:
{{ form::open('login') }}
this generates following:
<form method="post" action="http://[...]/public/index.php/login" accept-charset="utf-8">
i have .htaccess et al. configured "index.html" hidden uri, hidden these generated urls, too. has run , solved yet?
you need edit application/config/application.php , remove index.php. effect form , url's generated route().
Comments
Post a Comment