基本設定

http://laravel.com/

http://kejyun.github.io/Laravel-4-Docum ... roduction/
回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

基本設定

文章 yehlu »

我們直接來看 app 目錄底下的檔案,基本設定都在 app/config/app.php。

# 網站根目錄設定
'url' => 'http://localhost/laravel/public/',
只要將上面設定好,請打開 http://localhost/laravel/public/ 就會看到下面安裝完成畫面

代碼: 選擇全部

chmod 777 app/storage -fR
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

Re: 基本設定

文章 yehlu »

Apache 要開啟 mod_rewrite

代碼: 選擇全部

sudo a2enmod rewrite
sudo /etc/init.d/apache2 restart
Apache 的設定檔
/etc/apache2/sites-enabled/000-default.conf

代碼: 選擇全部

<Directory /var/www/>
        Options Indexes FollowSymLinks
        #AllowOverride None
        AllowOverride All
        Require all granted
</Directory>
執行目錄 public 的 .htaccess

代碼: 選擇全部

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
回覆文章

回到「laravel」