code igniter ile geliştirdiğim sitede www.sitem.com.tr/index şeklinde açılıyor buradaki indeks benim controllerimin ilk sayfası denebilir ben ise www.sitem.com.tr şeklinde açılmasını istiyorum nasıl yapabilirim
htaccess im şöyle:
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php\/Home\/$2 [L]
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php\/Home\/$2 [L]
RewriteCond $2 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php\/Home\/$2 [L]