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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -