Çıkarın. Mod_rewrite ile php

1 Cevap php

Nasıl bu url değiştirebilirsiniz: http://localhost/index.php/Department/2

bu bir: http://localhost/index/Department/2

Teşekkürler.

1 Cevap

Bu kural deneyin:

RewriteRule ^index/(.*) index.php/$1

Eğer şerit istiyorsanız index/ da, bu deneyin:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule !^index\.php$ index.php%{REQUEST_URI}