How do you redirect all request to public/ folder in laravel 5

前端 未结 5 1777
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-08 05:08

I have a classic Larevel 5 project structure and I need to redirect all requests to public/.

I am on a classic hosting environment so public/

5条回答
  •  余生分开走
    2020-12-08 05:41

    There are two solutions:

    1. Using .htaccess with mod_rewrite

    RewriteEngine on
    RewriteCond %{REQUEST_URI} !^public
    RewriteRule ^(.*)$ public/$1 [L]
    

    2. You can add a index.php file containing the following code and put it under your root Laravel folder (public_html folder).

提交回复
热议问题