Welcome Guest, Not a member yet? Register   Sign In
Removing index.php in Codeigniter
#41

[eluser]www.sblog.in[/eluser]
http://www.webtuts.in/how-to-remove-inde...deigniter/
#42

[eluser]Unknown[/eluser]
i had the same problem, and in a tutplus tutorial (build a CMS), saw this and it works:

Code:
# see if the module is active
<IfModule mod_rewrite.c>

    Options +FollowSymLinks
    
    # activate RewriteEngine
    RewriteEngine on

    # send the requests through index.php, except if they are a file ...
    RewriteCond %{REQUEST_FILENAME} !-f

    # ... or a directory
    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$ index.php/$1 [L]

</IfModule>




Theme © iAndrew 2016 - Forum software by © MyBB