Konfigurasi HTACCESS untuk SEME FRAMEWORK

Berikut ini adalah konfigurasi htaccess untuk seme framework di localhost (XAMPP)

RewriteEngine on

RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA] 

Berikut ini adalah konfigurasi htaccess untuk seme framework di shared hosting Apache

RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA] 

FYI, konfigurasi htaccess ini bisa juga digunakan untuk framework CodeIgniter.

nyingspot: Blog Seputar Bisnis Teknologi. Temukan hal menarik tentang bisnis dan teknologi hanya di nyingspot.com
Artikel Lainnya

This website uses cookies.