Postingan lainnya
kenapa httacces tidak berjalan di codeigniter ?
Halo gan. ane cuba tutorial codeigniter buat ngilangin link index.php tapi kenapa malah muncul error 404 ya ? ini script .htaccess nya
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
ini susunan filenya ![](https://skspace.sgp1.digitaloceanspaces.com/forums/images/tanya htakses 1.png)
tampilang ter load dengan index.php ![](https://skspace.sgp1.digitaloceanspaces.com/forums/images/tanya htakses 2.png)
index.php di hilangkan tapi malah error
![](https://skspace.sgp1.digitaloceanspaces.com/forums/images/tanya htakses 3.png)
mohon bantuanya . thanks
6 Jawaban:
lokasi .htaccess nya udah di root? coba di cek lagi
udah di paling luar gan hilman , berikut screen shoot nya
salah satu solusi di forum-forum tambahkan
RewriteBase /namaFolder/
setelah rewriteengine on, pada baris kedua
thanks gan , nanti di coba :D saya mundur ke kelas membuat mini framework dulu biar tau alurnya . hihihi agak ga terlalu ngerti pake codeigniter karna dasar OOP nya belum mateng.
wew, yg buat Sekolahkoding.com(om Hilman) langsung turun tangan..(y) :D
Jawaban Terpilih
Kalau saya membuat .htaccess seperti ini:
<IfModule mod_rewrite.c>
Options -Indexes
RewriteEngine On
RewriteCond $1 !^(index\\.php|resources|robots\\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L,QSA]
</IfModule>