cheese
version 1.3
Keju adalah kerangka PHP yang ringan, ikuti instruksi di bawah ini:
Memasang keju dapat dilakukan dengan dua cara
Pergilah ke [github.com/cheeseframework media(https://github.com/cheeseframework/cheese ,"cheese Framework Download ")
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>
Secara default, RE -writebase diatur ke /Keju /Publik.
Ubah menjadi:
<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>
Buka direktori konfigurasi di sana Anda akan menemukan file config.php buka dan edit. Contoh:
// 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 ' );
Baca selengkapnya