How can I change this url: http://localhost/index.php/Department/2
to this one: http://localhost/index/Department/2
Thanks.
How can I change this url: http://localhost/index.php/Department/2
to this one: http://localhost/index/Department/2
Thanks.
Try this rule:
RewriteRule ^index/(.*) index.php/$1
And if you want to strip the index/
too, try this:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule !^index\.php$ index.php%{REQUEST_URI}