cheese
version 1.3
チーズは軽量のPHPフレームワークです。以下の指示に従ってください。
チーズの取り付けは2つの方法で行うことができます
[github.com/cheeseframework [https://github.com/cheeseframework/cheese,"cheeseフレームワークのダウンロード ")にアクセスしてください。
git clone https://github.com/CheeseFramework/cheese <IfModule mod_rewrite.c>
Options -Multiviews
RewriteEngine On
RewriteBase /cheese/public
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
</IfModule>
デフォルトでは、書き換えベースは /チーズ /パブリックに設定されています。
に変更してください:
<IfModule mod_rewrite.c>
Options -Multiviews
RewriteEngine On
RewriteBase /your_directory/public
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
</IfModule>
そこのconfigディレクトリに移動してください。config.phpファイルを開いて編集します。例:
// Database config section
define ( DB_HOST , ' localhost ' );
define ( DB_USER , ' root ' );
define ( DB_PASS , ' 123456 ' );
define ( DB_NAME , ' cheese ' );
// Site config section
define ( APPROOT , dirname ( dirname ( __FILE__ )));
define ( URLROOT , ' http://localhost/cheese ' );
define ( SITENAME , ' Welcome to Cheese ' );
define ( APPVERSION , ' v1.3.0 ' );
// Core control
define ( CONTROLLER , ' Pages ' );
define ( METHOD , ' index ' );
続きを読む