Laravel remove public path
- Web Service Document Root
- nginx
- root /{laravel_path}/public
- .htaccess
- apache (link)
- <IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule> - Move Public folders To Root (link)
- mv {laravel_path}/public/* {laravel_path}/
- {laravel_path}/index.php
- echo 出 __DIR__ 後,調整 autoload.php & start.php 路徑
- {laravel_path}/bootstrap/paths.php
- 'public' => __DIR__.'/../public',改成 'public' => __DIR__.'/../..',
Laravel remove public path
Reviewed by Wild
on
11/20/2014 03:31:00 下午
Rating:
沒有留言:
沒有Google帳號也可發表意見唷!