How to remove web/ from url (symfony) -


i using symfony 3. want remove web/ url this.

localhost/symfony/web/ localhost/symfony/

but want asset (css, js etc) in web folder.

like other frameworks (codeigniter, cakephp), access main controller root not web folder

anybody can help

i'd suggest change documentroot path in virtual host configuration in apache.

<virtualhost *:80>    ...    documentroot /path/to/project/web </virtualhost> 

this way apache point web/ folder instead of project root folder , avoid having /web/ in url.

hope helps :)


Comments