How to remove index. php from CI. Remove index from CI. [plain] RewriteEngineonRewriteBasetestRewriteCond % {REQUEST_URI} ^ system. * RewriteRule ^ (. *) $ index. remove index from php $1 [L] RewriteCond % {r ci. php
Pseudo-static configuration in apache
[Plain]
RewriteEngine on
RewriteBase/test
RewriteCond % {REQUEST_URI} ^ system .*
RewriteRule ^ (. *) $ index. php/$1 [L]
RewriteCond % {REQUEST_FILENAME }! -F
RewriteCond % {REQUEST_FILENAME }! -D
RewriteRule ^ (. *) $ index. php/$1 [L]
RewriteEngine on
RewriteBase/test
RewriteCond % {REQUEST_URI} ^ system .*
RewriteRule ^ (. *) $ index. php/$1 [L]
RewriteCond % {REQUEST_FILENAME }! -F
RewriteCond % {REQUEST_FILENAME }! -D
RewriteRule ^ (. *) $ index. php/$1 [L] alias configuration in apache
[Plain]
Alias/test "f:/www"
Options Indexes FollowSymLinks
AllowOverride all
Order allow, deny
Allow from all
Alias/test "f:/www"
Options Indexes FollowSymLinks
AllowOverride all
Order allow, deny
Allow from all
Set the configuration file in CI
Application/config. php
$ Config ['index _ page'] = "index. php ";
Change to $ config ['index _ page'] = "";.
Using pseudo-static configuration in apache [plain] RewriteEngine on RewriteBase/test RewriteCond % {REQUEST_URI} ^ system. * RewriteRule ^ (. *) $ index. php/$1 [L] RewriteCond % {R...