Moje aktualne adresy URL wyglądają tak [mysite]index.php/[rest of the slug]
.
Chcę usunąć index.php
te adresy URL.
mod_rewrite
jest włączony na moim serwerze Apache2. W config
,$config['index_page'] = '';
Mój .htaccess
plik główny Codeignitor zawiera,
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
Ale nadal nie działa. Gdzie się mylę?