Welcome Guest, Not a member yet? Register   Sign In
Remove the index.php htaccess
#1

[eluser]CodeIgniter Web[/eluser]
Hi friends,

My folder structure,

www
codeigiter
system
user_guide
js
css
index.php
admin.php
.htaccess

system/application/config/config.php

$config['index_page'] = "";
and
$config['uri_protocol'] = "REQUEST_URI";

MY .htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css)
RewriteRule ^(.*)$ /codeigniter/index.php/$1 [L]

But 500 Internal Server Error . Please guide me the remove of index.php
#2

[eluser]cirox![/eluser]
Use the .htaccess file from here:

http://codeigniter.com/wiki/mod_rewrite/

Set your config file to:
Code:
$config['index_page'] = "";
$config['uri_protocol']    = "AUTO";
This has worked reliably for me both locally (windows + linux) and on my hosting environment without the need for any modifications.

Kudos to Elliot Haughin




Theme © iAndrew 2016 - Forum software by © MyBB