# 網站根目錄設定
'url' => 'http://localhost/laravel/public/',
只要將上面設定好,請打開 http://localhost/laravel/public/ 就會看到下面安裝完成畫面
代碼: 選擇全部
chmod 777 app/storage -fR
代碼: 選擇全部
chmod 777 app/storage -fR
代碼: 選擇全部
sudo a2enmod rewrite
sudo /etc/init.d/apache2 restart
代碼: 選擇全部
<Directory /var/www/>
Options Indexes FollowSymLinks
#AllowOverride None
AllowOverride All
Require all granted
</Directory>
代碼: 選擇全部
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]