初期設定

ダウンロード

http://kohanaframework.org/のダウンロードよりダウンロードを行う


ファイル解凍

ダウンロードしたファイルを解凍する


ディレクトリ構成

  • kohana
    • application
    • module
    • system

ディレクトリ設定

xamppの公開ディレクトリに配置(名前はkohana)


サンプル確認

http://localhost/kohana/で確認


.htaccess編集

# Turn on URL rewriting
RewriteEngine On
 
# Installation directory
RewriteBase /kohana/
 
# Protect hidden files from being viewed
<Files .*>
	Order Deny,Allow
	Deny From All
</Files>
 
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
 
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
 
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
 
 

install.phpをリネーム

ファイル名をリネームして、install.phpを呼べないようにする


http://localhost/kohana/welcomeを確認

welcomeのコントローラーを呼び出していることを確認



最終更新:2012年09月17日 22:21