Avoid public folder of laravel and open directly the root in web server

前端 未结 9 2119
礼貌的吻别
礼貌的吻别 2020-11-29 16:45

I was going through all possible sample on internet to solve this. Still it is an headache.

I just want to avoid the \'public\' in www.mylaravelsite.com/public

9条回答
  •  爱一瞬间的悲伤
    2020-11-29 17:33

    Just add .htaccess file on Laravel root if it's not present and add following lines in it, that's it,

      
       RewriteEngine On 
       RewriteRule ^(.*)$ public/$1 [L]
    
    

提交回复
热议问题