I need some help with laravel 4 application i need to remove Index.php from url i have tried the solution that has been mentioned in laravel documentation
P
FOR LAMP SERVER
Try the following steps,
sudo a2enmod rewrite
sudo service apache2 restart
sudo nano /etc/apache2/sites-available/000-default.conf
Search for “DocumentRoot /var/www/html” and add the following lines directly below:
`
AllowOverride All
Save and exit the nano editor via CTRL-X, “y” and ENTER.
sudo service apache2 restart